Files
agentic_security/tests/conftest.py
T
2025-03-02 19:03:39 +02:00

8 lines
168 B
Python

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