()
| 7 | # Configure logging for the entire test session |
| 8 | @pytest.fixture(scope="session", autouse=True) |
| 9 | def configure_logging(): |
| 10 | setup_logging(enabled=True) |
| 11 | |
| 12 | # Log the name of each test before execution |
| 13 | @pytest.fixture(autouse=True) |
nothing calls this directly
no test coverage detected