MCPcopy Create free account
hub / github.com/ScrapeGraphAI/Scrapegraph-ai / pytest_configure

Function pytest_configure

tests/conftest.py:369–385  ·  view source on GitHub ↗

Register custom markers.

(config)

Source from the content-addressed store, hash-verified

367
368
369def pytest_configure(config):
370 """Register custom markers."""
371 config.addinivalue_line(
372 "markers", "integration: mark test as integration test (requires network)"
373 )
374 config.addinivalue_line(
375 "markers", "slow: mark test as slow running"
376 )
377 config.addinivalue_line(
378 "markers", "llm_provider(name): mark test for specific LLM provider"
379 )
380 config.addinivalue_line(
381 "markers", "requires_api_key: mark test as requiring API keys"
382 )
383 config.addinivalue_line(
384 "markers", "benchmark: mark test as performance benchmark"
385 )
386
387
388def pytest_collection_modifyitems(config, items):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected