Framework Mode - capfd for file descriptors
Folder Structure
tests/ ├── test_example.py ├── conftest.py utilities/ ├── file_helpers.py pytest.ini
This structure keeps tests separate from utility code. tests/ holds test files using capfd. conftest.py can hold shared fixtures.