18 lines
444 B
Python
18 lines
444 B
Python
"""
|
|
Pytest configuration for integration tests.
|
|
"""
|
|
|
|
import pytest
|
|
|
|
|
|
def pytest_configure(config):
|
|
"""Register custom markers."""
|
|
config.addinivalue_line(
|
|
"markers", "integration: Integration tests requiring running services"
|
|
)
|
|
config.addinivalue_line(
|
|
"markers", "slow: Slow tests (>5s execution time)"
|
|
)
|
|
config.addinivalue_line(
|
|
"markers", "e2e: End-to-end tests requiring full pipeline"
|
|
)
|