Skip to content

Commit 566a545

Browse files
committed
Fix coverage test. With test parallelism the last proc would overwrite the others.
1 parent 85b0b5d commit 566a545

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/test_count.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,9 @@ jobs:
5757
color: brightgreen
5858

5959
- name: Run library coverage
60+
# n0 disables parallel execution
6061
run: |
61-
uv run coverage run -m pytest -q ./libs/
62+
uv run coverage run -m pytest -q ./libs/ -n0
6263
TOTAL_LIB_COVERAGE=$(uv run coverage report | grep TOTAL | awk {'print $4'})
6364
echo "TOTAL_LIB_COVERAGE=$TOTAL_LIB_COVERAGE" >> $GITHUB_ENV
6465

0 commit comments

Comments
 (0)