mirror of
https://github.com/msoedov/agentic_security.git
synced 2026-06-24 22:29:56 +02:00
8 lines
168 B
Python
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")
|