Files
agentic_security/tests/conftest.py
T
Alexander Myasoedov cb3a9bcbc0 fix(pc):
2025-03-02 19:48:45 +02:00

9 lines
169 B
Python

import os
import pytest
def pytest_runtest_setup(item):
if "slow" in item.keywords and not os.getenv("RUN_SLOW_TESTS"):
pytest.skip("Skipping slow test")