Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
- name: Run gevent unit tests (xdist disabled)
run: uv run pytest tests/unit/ -m "gevent" -n 0 --cov=zae_limiter --cov-report=xml --cov-append --junitxml=junit-gevent.xml -o junit_family=legacy
- name: Upload coverage
uses: codecov/codecov-action@v6
uses: codecov/codecov-action@v7
if: matrix.python-version == '3.12'
with:
files: coverage.xml
Expand All @@ -81,7 +81,7 @@ jobs:
fail_ci_if_error: false
- name: Upload test results to Codecov
if: "!cancelled() && matrix.python-version == '3.12'"
uses: codecov/codecov-action@v6
uses: codecov/codecov-action@v7
with:
files: junit.xml,junit-gevent.xml
flags: unit
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
AWS_DEFAULT_REGION: us-east-1
AWS_ENDPOINT_URL: http://localhost:4566
- name: Upload integration coverage
uses: codecov/codecov-action@v6
uses: codecov/codecov-action@v7
if: matrix.python-version == '3.12'
with:
files: coverage.xml
Expand All @@ -143,7 +143,7 @@ jobs:
fail_ci_if_error: false
- name: Upload integration test results to Codecov
if: "!cancelled() && matrix.python-version == '3.12'"
uses: codecov/codecov-action@v6
uses: codecov/codecov-action@v7
with:
files: junit.xml
flags: integration
Expand Down Expand Up @@ -190,7 +190,7 @@ jobs:
AWS_DEFAULT_REGION: us-east-1
AWS_ENDPOINT_URL: http://localhost:4566
- name: Upload E2E coverage
uses: codecov/codecov-action@v6
uses: codecov/codecov-action@v7
if: matrix.python-version == '3.12'
with:
files: coverage.xml
Expand All @@ -199,7 +199,7 @@ jobs:
fail_ci_if_error: false
- name: Upload E2E test results to Codecov
if: "!cancelled() && matrix.python-version == '3.12'"
uses: codecov/codecov-action@v6
uses: codecov/codecov-action@v7
with:
files: junit.xml
flags: e2e
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
run: uv run pytest tests/doctest/test_docs_run.py -v -p no:xdist -o "addopts=" --cov=zae_limiter --cov-report=xml --junitxml=junit.xml -o junit_family=legacy

- name: Upload coverage
uses: codecov/codecov-action@v6
uses: codecov/codecov-action@v7
with:
files: coverage.xml
flags: doctest
Expand All @@ -64,7 +64,7 @@ jobs:

- name: Upload test results to Codecov
if: "!cancelled()"
uses: codecov/codecov-action@v6
uses: codecov/codecov-action@v7
with:
files: junit.xml
flags: doctest
Expand Down
Loading