Register custom markers.
(config)
| 39 | |
| 40 | |
| 41 | def pytest_configure(config): |
| 42 | """Register custom markers.""" |
| 43 | config.addinivalue_line( |
| 44 | "markers", |
| 45 | "timing_serial: GPU timing tests (skipped by default; run with: pytest tests -m timing_serial -n 0)", |
| 46 | ) |
| 47 | |
| 48 | |
| 49 | def pytest_collection_modifyitems( |
nothing calls this directly
no outgoing calls
no test coverage detected