From 0b30e8362d089857329a1d56d47f4e744b3a31a9 Mon Sep 17 00:00:00 2001 From: Inga Ulusoy Date: Tue, 9 Sep 2025 16:34:12 +0200 Subject: [PATCH] fix: do not run gcv tests on CI --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fd38ef3..adf5e3f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,7 @@ jobs: - name: Run pytest run: | cd ammico - python -m pytest -svv --cov=. --cov-report=xml + python -m pytest -svv -m "not gcv" --cov=. --cov-report=xml - name: Upload coverage if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11' uses: codecov/codecov-action@v3