MCPcopy Create free account
hub / github.com/Open-Bee/DataStudio / pytest_configure

Function pytest_configure

tests/conftest.py:270–278  ·  view source on GitHub ↗

Configure pytest markers.

(config)

Source from the content-addressed store, hash-verified

268
269
270def 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 )

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected