Framework Mode - Project structure for tests
Folder Structure
project-root/
├── tests/
│ ├── unit/
│ │ ├── test_example_unit.py
│ ├── integration/
│ │ ├── test_example_integration.py
│ ├── e2e/
│ │ ├── test_example_e2e.py
│ ├── utils/
│ ├── __init__.py
│ └── conftest.py
├── src/
│ ├── __init__.py
│ └── application_code.py
├── pytest.ini
├── requirements.txt
└── README.md