mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-12 21:05:53 +02:00
11 lines
282 B
Python
11 lines
282 B
Python
|
|
pytest_plugins = ("cs",)
|
|
|
|
|
|
def pytest_configure(config):
|
|
config.addinivalue_line(
|
|
'markers', 'docker: mark tests for lone or manually orchestrated containers'
|
|
)
|
|
config.addinivalue_line(
|
|
'markers', 'compose: mark tests for docker compose projects'
|
|
)
|