pytest-project/
├── tests/
│ ├── test_example.py
│ └── test_feature.py
├── conftest.py
├── pytest.ini
└── utils/
└── helpers.py
This is a simple pytest project structure. Tests live in the tests/ folder. Shared helpers go in utils/. The conftest.py file holds fixtures and hooks. The pytest.ini file configures pytest settings.