From 34632980badd17c03b39e8ce2f2b2e62d9261e55 Mon Sep 17 00:00:00 2001 From: Brian Bjarke Jensen Date: Tue, 7 Jul 2026 20:33:21 +0200 Subject: [PATCH] Skip coverage floor check in partial CI test jobs. Unit and integration jobs each produce partial coverage; pytest-cov reads fail_under from pyproject.toml unless overridden with --cov-fail-under=0. Co-authored-by: Cursor --- .gitea/workflows/test.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 371a1d7..17e7a67 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -30,7 +30,8 @@ jobs: run: | uv run pytest tests/unit/ -m "not integration" \ --cov=python_repositories \ - --cov-report= + --cov-report= \ + --cov-fail-under=0 - name: Upload unit coverage uses: https://github.com/christopherHX/gitea-upload-artifact@v4 @@ -66,7 +67,8 @@ jobs: run: | uv run pytest -m integration \ --cov=python_repositories \ - --cov-report= + --cov-report= \ + --cov-fail-under=0 - name: Upload integration coverage uses: https://github.com/christopherHX/gitea-upload-artifact@v4