From 6997870d18bbfe2c9274fefc65621688bcb5cfcf Mon Sep 17 00:00:00 2001 From: "Philipp A." Date: Fri, 21 Feb 2025 09:23:30 +0100 Subject: [PATCH 1/2] try skipping second .xml generation --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 42916f3..a14ad26 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,6 +32,7 @@ jobs: coverage run -m pytest -m "not benchmark" coverage xml coverage report + rm test-data/.coverage - uses: codecov/codecov-action@v5 with: fail_ci_if_error: true From 537d7ea60b0e479ff915183c7874619c49beb2ee Mon Sep 17 00:00:00 2001 From: "Philipp A." Date: Fri, 21 Feb 2025 10:58:34 +0100 Subject: [PATCH 2/2] Update ci.yml --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a14ad26..94a7493 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,8 +30,9 @@ jobs: - run: uv pip install --system -e .[test${{ matrix.extras == 'full' && ',full' || '' }}] - run: | coverage run -m pytest -m "not benchmark" - coverage xml coverage report + # https://github.com/codecov/codecov-cli/issues/648 + coverage xml rm test-data/.coverage - uses: codecov/codecov-action@v5 with: