Skip to content

Commit 6430cd7

Browse files
committed
CI: Tweak test invocation to satisfy Linux, macOS and Windows
1 parent a4885ee commit 6430cd7

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/main.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,12 @@ jobs:
5858
run: |
5959
bin/flake8
6060
61-
test_program=bin/test
61+
if [[ ${{ matrix.os }} = "ubuntu-latest" ]]; then
62+
bin/coverage run bin/test -vv1
63+
fi
6264
if [[ ${{ matrix.os }} = "macos-latest" ]]; then
63-
test_program=bin/test-quick
65+
bin/coverage run bin/test-quick -vv1
6466
fi
6567
if [[ ${{ matrix.os }} = "windows-latest" ]]; then
66-
test_program=bin/test-quick.exe
68+
bin/test-quick -vv1
6769
fi
68-
bin/coverage run $test_program -vv1

0 commit comments

Comments
 (0)