Framework Mode - Test packages
Folder Structure for Pytest Test Packages
project-root/ ├── src/ │ └── app_code.py ├── tests/ │ ├── __init__.py │ ├── unit/ │ │ ├── __init__.py │ │ ├── test_module1.py │ │ └── test_module2.py │ ├── integration/ │ │ ├── __init__.py │ │ └── test_integration_feature.py │ ├── e2e/ │ │ ├── __init__.py │ │ └── test_end_to_end.py │ └── conftest.py ├── pytest.ini └── requirements.txt