From a4885eee9e07cabc7ecb26328c00115bf9360d5b Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Tue, 3 Nov 2020 14:00:19 +0100 Subject: [PATCH] CI: Attempt to satisfy Windows when invoking "bin/coverage" --- .github/workflows/main.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c7841fbff..23ca1fb19 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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