From 8bc89df0a18c46ea96e626be922369c42b243223 Mon Sep 17 00:00:00 2001 From: Claas Date: Mon, 9 Dec 2024 16:42:10 +0100 Subject: [PATCH] .github/workflows/_test.yml : added option -m "not system" to the pytest call, in order to skip the long running tests. --- .github/workflows/_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/_test.yml b/.github/workflows/_test.yml index 6c2e921..aa81e2f 100644 --- a/.github/workflows/_test.yml +++ b/.github/workflows/_test.yml @@ -33,4 +33,4 @@ jobs: uv pip install pytest uv pip install pytest-cov - name: Run pytest - run: uv run pytest --cov + run: uv run pytest --cov -m "not system"