mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-10 20:05:55 +02:00
8 lines
304 B
Python
8 lines
304 B
Python
from _pytest.config import Config
|
|
|
|
pytest_plugins = ("cs",)
|
|
|
|
|
|
def pytest_configure(config: Config) -> None:
|
|
config.addinivalue_line("markers", "docker: mark tests for lone or manually orchestrated containers")
|
|
config.addinivalue_line("markers", "compose: mark tests for docker compose projects")
|