Framework Mode - Fixture scope with parallel tests
Folder Structure
tests/ ├── test_login.py ├── test_checkout.py ├── test_profile.py ├── conftest.py ├── pytest.ini ├── requirements.txt
This structure keeps all test files inside tests/. The conftest.py file holds fixtures shared across tests.