PyTest - Test Organization
You want to organize tests for a large project using pytest. You create nested folders with
__init__.py files like this:
tests/
__init__.py
unit/
__init__.py
test_utils.py
integration/
__init__.py
test_api.py
How can you run only the integration tests using pytest?