We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4885ee commit 6430cd7Copy full SHA for 6430cd7
.github/workflows/main.yml
@@ -58,11 +58,12 @@ jobs:
58
run: |
59
bin/flake8
60
61
- test_program=bin/test
+ if [[ ${{ matrix.os }} = "ubuntu-latest" ]]; then
62
+ bin/coverage run bin/test -vv1
63
+ fi
64
if [[ ${{ matrix.os }} = "macos-latest" ]]; then
- test_program=bin/test-quick
65
+ bin/coverage run bin/test-quick -vv1
66
fi
67
if [[ ${{ matrix.os }} = "windows-latest" ]]; then
- test_program=bin/test-quick.exe
68
+ bin/test-quick -vv1
69
- bin/coverage run $test_program -vv1
0 commit comments