Framework Mode - First PyTest test
Folder Structure
project-root/ ├── tests/ │ ├── test_sample.py │ └── conftest.py ├── src/ │ └── app_code.py ├── pytest.ini └── requirements.txt
This is a simple PyTest project layout. tests/ holds all test files. conftest.py contains shared fixtures. src/ holds application code.