diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index 2c2b0141..bc1128d2 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -52,12 +52,6 @@ jobs: run: | xvfb-run pytest --cov-report xml --cov=tagstudio - - name: Upload coverage - uses: actions/upload-artifact@v4 - with: - name: coverage - path: coverage.xml - pytest-windows: name: Run pytest (Windows) runs-on: windows-2025 @@ -74,24 +68,3 @@ jobs: - name: Execute pytest run: | pytest - - coverage: - name: Check coverage - runs-on: ubuntu-latest - needs: pytest-linux - - steps: - - name: Fetch coverage - uses: actions/download-artifact@v4 - with: - name: coverage - - - name: Check coverage - uses: yedpodtrzitko/coverage@main - with: - thresholdAll: 0.1 - thresholdNew: 0.1 - thresholdModified: 0.1 - coverageFile: coverage.xml - token: ${{ secrets.GITHUB_TOKEN }} - sourceDir: tagstudio/src