Skip to content

Commit

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

0 comments on commit a4885ee

Please sign in to comment.