feat(add slow test pytest cfg):

This commit is contained in:
Alexander Myasoedov
2025-03-02 19:03:39 +02:00
parent ec4bb0b086
commit 181e39bcfb
+7
View File
@@ -0,0 +1,7 @@
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")