Skip to content

Commit c9b5336

Browse files
Change coverage.yml to use python 3.14
1 parent 0f21814 commit c9b5336

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/coverage.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
- name: Calculate base code coverage
4444
run: |
45-
nox --sessions unit-3.13
45+
nox --sessions unit-3.14
4646
coverage report --show-missing
4747
export CUR_COVER=$(coverage report | awk '$1 == "TOTAL" {print $NF+0}')
4848
echo "CUR_COVER=$CUR_COVER" >> $GITHUB_ENV
@@ -56,7 +56,7 @@ jobs:
5656

5757
- name: Calculate PR code coverage
5858
run: |
59-
nox --sessions unit-3.13
59+
nox --sessions unit-3.14
6060
coverage report --show-missing
6161
export PR_COVER=$(coverage report | awk '$1 == "TOTAL" {print $NF+0}')
6262
echo "PR_COVER=$PR_COVER" >> $GITHUB_ENV

0 commit comments

Comments
 (0)