Configure pytest markers.
(config)
| 268 | |
| 269 | |
| 270 | def pytest_configure(config): |
| 271 | """Configure pytest markers.""" |
| 272 | config.addinivalue_line( |
| 273 | "markers", "slow: marks tests as slow (deselect with '-m \"not slow\"')" |
| 274 | ) |
| 275 | config.addinivalue_line("markers", "integration: marks tests as integration tests") |
| 276 | config.addinivalue_line( |
| 277 | "markers", "requires_api: marks tests that require external API" |
| 278 | ) |
nothing calls this directly
no outgoing calls
no test coverage detected