project-root/
├── tests/
│ ├── test_example.py
│ ├── test_feature_a.py
│ └── test_feature_b.py
├── conftest.py
├── pytest.ini
└── utils/
└── helpers.py
This is a typical Pytest project structure. Tests live in the tests/ folder. Shared helpers go in utils/. Configuration files like pytest.ini and conftest.py help manage test setup.