Skip to content

Commit

Permalink
CI: Tweak test invocation to satisfy Linux, macOS and Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Nov 3, 2020
1 parent a4885ee commit 6430cd7
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,12 @@ jobs:
run: |
bin/flake8
test_program=bin/test
if [[ ${{ matrix.os }} = "ubuntu-latest" ]]; then
bin/coverage run bin/test -vv1
fi
if [[ ${{ matrix.os }} = "macos-latest" ]]; then
test_program=bin/test-quick
bin/coverage run bin/test-quick -vv1
fi
if [[ ${{ matrix.os }} = "windows-latest" ]]; then
test_program=bin/test-quick.exe
bin/test-quick -vv1
fi
bin/coverage run $test_program -vv1

0 comments on commit 6430cd7

Please sign in to comment.