From ab174df3a9c8c6ccb44deaa2ef6da8eb421b26fb Mon Sep 17 00:00:00 2001 From: Chris Markiewicz Date: Mon, 9 Dec 2024 11:06:58 -0500 Subject: [PATCH 1/2] chore: Use default coverage.xml filename --- .github/workflows/test.yml | 1 - tox.ini | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c54e657..aa92eea 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -87,7 +87,6 @@ jobs: - uses: codecov/codecov-action@v4 if: ${{ always() }} with: - files: cov.xml token: ${{ secrets.CODECOV_TOKEN }} checks: diff --git a/tox.ini b/tox.ini index b01da0f..6b5b161 100644 --- a/tox.ini +++ b/tox.ini @@ -40,7 +40,7 @@ deps = commands = pytest -svx --doctest-modules \ - --cov . --cov-report term --cov-report xml:cov.xml \ + --cov . --cov-report term --cov-report xml \ --durations=20 --durations-min=1.0 \ {posargs} From 1c74db706f94fc303515bcc3539547e5668184bc Mon Sep 17 00:00:00 2001 From: Chris Markiewicz Date: Mon, 9 Dec 2024 11:07:11 -0500 Subject: [PATCH 2/2] chore: Bump codecov-action to v5 --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index aa92eea..0ef9878 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -84,7 +84,7 @@ jobs: - name: Run tox run: tox -v --exit-and-dump-after 1200 run --installpkg dist/*.whl - - uses: codecov/codecov-action@v4 + - uses: codecov/codecov-action@v5 if: ${{ always() }} with: token: ${{ secrets.CODECOV_TOKEN }}