From 0cfdaee483456c2c201c1f728590e6eb7b13d095 Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Mon, 6 Apr 2026 23:17:46 +0100 Subject: [PATCH] Fix Coverage.py configuration Fix missed changes on #689, which got prematurely merged due to missing branch protection. --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a652dd2b..464e6832 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -48,7 +48,7 @@ jobs: uses: actions/upload-artifact@v7 with: name: coverage-data-${{ matrix.python-version }} - path: '${{ github.workspace }}/.coverage.*' + path: '${{ github.workspace }}/.coverage' include-hidden-files: true if-no-files-found: error @@ -72,7 +72,7 @@ jobs: - name: Download data uses: actions/download-artifact@v8 with: - path: ${{ github.workspace }} + path: .coverage pattern: coverage-data-* merge-multiple: true