Framework Mode - Why parametrize multiplies test coverage
Folder Structure
tests/ ├── test_math_operations.py ├── test_user_login.py └── conftest.py utils/ ├── helpers.py └── data_providers.py pytest.ini
This is a simple pytest project structure. All test files are inside tests/. Helpers and data providers are in utils/. The conftest.py file holds shared fixtures.