Framework Mode - Fixture teardown (yield)
Folder Structure
tests/ ├── test_example.py ├── conftest.py utilities/ ├── helpers.py pytest.ini
This is a simple pytest project structure. conftest.py holds fixtures including those with yield for teardown. Test files go in tests/. Utility functions live in utilities/.