Skip to content

chore: update code coverage to use proper python version #1293

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 6, 2025
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

- name: Calculate base code coverage
run: |
nox --sessions unit-3.10
nox --sessions unit-3.13
coverage report --show-missing
export CUR_COVER=$(coverage report | awk '$1 == "TOTAL" {print $NF+0}')
echo "CUR_COVER=$CUR_COVER" >> $GITHUB_ENV
Expand All @@ -51,7 +51,7 @@ jobs:

- name: Calculate PR code coverage
run: |
nox --sessions unit-3.10
nox --sessions unit-3.13
coverage report --show-missing
export PR_COVER=$(coverage report | awk '$1 == "TOTAL" {print $NF+0}')
echo "PR_COVER=$PR_COVER" >> $GITHUB_ENV
Expand Down
Loading