Skip to content

Commit 8e9065c

Browse files
authored
ci: compute coverage during Python 3.11 run (#440)
### Summary of Changes Compute coverage during the Python 3.11 run since it's slightly faster than the 3.10 run.
1 parent ecd975c commit 8e9065c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ jobs:
1717
working-directory: .
1818
python-version: ${{ matrix.python-version }}
1919
module-name: safeds
20-
coverage: ${{ matrix.python-version == '3.10' }}
20+
coverage: ${{ matrix.python-version == '3.11' }}
2121
secrets:
2222
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ jobs:
2121
working-directory: .
2222
python-version: ${{ matrix.python-version }}
2323
module-name: safeds
24-
coverage: ${{ matrix.python-version == '3.10' }}
24+
coverage: ${{ matrix.python-version == '3.11' }}
2525
secrets:
2626
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)