Run Pytest with Allure and Coverage Reports / tests (push) Successful in 37s
9 lines
115 B
Python
9 lines
115 B
Python
def addition(a, b):
|
|
return a + b
|
|
|
|
def division(a, b):
|
|
return a / b
|
|
|
|
def multiply(a, b):
|
|
return a * b
|