Skip to content

Commit 31ec9ca

Browse files
chore: update code coverage to use proper python version (#1293)
1 parent 27f6de3 commit 31ec9ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/coverage.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

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

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

0 commit comments

Comments
 (0)