PyTest - Test Organization
Given the following test module
Which functions will pytest run as tests?
test_sample.py with these functions:def test_add():
assert 1 + 1 == 2
def add():
return 1 + 1
def test_subtract():
assert 2 - 1 == 1
Which functions will pytest run as tests?
