Skip to content

Commit a4885ee

Browse files
committed
CI: Attempt to satisfy Windows when invoking "bin/coverage"
1 parent 3c353c5 commit a4885ee

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/main.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,10 @@ jobs:
5959
bin/flake8
6060
6161
test_program=bin/test
62-
if [[ ${{ matrix.os }} = "macos-latest" || ${{ matrix.os }} = "windows-latest" ]]; then
62+
if [[ ${{ matrix.os }} = "macos-latest" ]]; then
6363
test_program=bin/test-quick
6464
fi
65+
if [[ ${{ matrix.os }} = "windows-latest" ]]; then
66+
test_program=bin/test-quick.exe
67+
fi
6568
bin/coverage run $test_program -vv1

0 commit comments

Comments
 (0)