Framework Mode - Custom markers
Folder Structure
tests/
├── test_login.py
├── test_checkout.py
├── test_profile.py
pytest.ini
conftest.py
utils/
└── helpers.py
This is a typical pytest project structure. tests/ holds test files. pytest.ini configures pytest including custom markers. conftest.py contains fixtures and hooks. utils/ has helper functions.