PyTest - Test Organization
Given this folder structure:
tests/ __init__.py test_math.py test_string.pyWhat will happen when you run
pytest tests/?tests/ __init__.py test_math.py test_string.pyWhat will happen when you run
pytest tests/?__init__.py marks the folder as a package but does not prevent pytest from running tests inside.test_math.py and test_string.py -> Option D15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions