From 5e1c1f2014b017f794db9b2ea2dd6660e9510718 Mon Sep 17 00:00:00 2001 From: Travis Abendshien <46939827+CyanVoxel@users.noreply.github.com> Date: Mon, 18 May 2026 12:35:36 -0700 Subject: [PATCH] fix(ci): lower coverage check threshold --- .github/workflows/pytest.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index a6fef02b..2c2b0141 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -89,9 +89,9 @@ jobs: - name: Check coverage uses: yedpodtrzitko/coverage@main with: - thresholdAll: 0.4 - thresholdNew: 0.4 - thresholdModified: 0.4 + thresholdAll: 0.1 + thresholdNew: 0.1 + thresholdModified: 0.1 coverageFile: coverage.xml token: ${{ secrets.GITHUB_TOKEN }} sourceDir: tagstudio/src