Framework Mode - PyTest installation (pip install pytest)
Folder Structure
project-root/
├── tests/
│ ├── test_example.py
│ └── __init__.py
├── src/
│ └── app_code.py
├── conftest.py
├── pytest.ini
└── requirements.txt
This is a simple PyTest project structure. tests/ holds test files. conftest.py contains shared fixtures. pytest.ini configures PyTest settings.