9 lines
211 B
Python
9 lines
211 B
Python
|
|
"""Pytest config for the VIOLET package."""
|
||
|
|
|
||
|
|
|
||
|
|
def pytest_configure(config):
|
||
|
|
config.addinivalue_line(
|
||
|
|
"markers",
|
||
|
|
"gate: stage-gate tests (run explicitly on the prod host with -m gate)",
|
||
|
|
)
|