Framework Mode - pytest.raises context manager
Folder Structure
tests/ ├── test_example.py ├── conftest.py utilities/ ├── helpers.py pytest.ini
This is a simple pytest project structure. All test files go under tests/. Shared helpers go under utilities/. The pytest.ini file holds pytest configuration.