Skip to content

Commit 9ea29f3

Browse files
committed
Only upload coverage after windows and android tests ran too
The coverage fluctuated when the linux tests finished before the windows or android tests since their coverage would be missing. So the coverage for the `adb` module went up/down randomly. Require the windows tests to pass now too!
1 parent b922cbb commit 9ea29f3

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,6 @@ jobs:
316316
windows-test:
317317
runs-on: windows-latest
318318
timeout-minutes: 30
319-
continue-on-error: true
320319
steps:
321320
- uses: actions/checkout@v6
322321

@@ -350,7 +349,7 @@ jobs:
350349

351350
upload-coverage:
352351
runs-on: ubuntu-latest
353-
needs: test
352+
needs: [test, android-test, windows-test]
354353
steps:
355354
- uses: actions/checkout@v6
356355
with:

0 commit comments

Comments
 (0)