Skip to content

Commit

Permalink
Attempting to fix Windows tests running in CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdlaird committed Nov 29, 2022
1 parent 8207deb commit 1dde9e1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,11 @@ jobs:
make install
- name: Run tests
run: |
make test local
if [ "$RUNNER_OS" == "Windows" ]; then
coverage run -m unittest discover -b;
else
make test local
fi
shell: bash
- name: Upload coverage
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11'
Expand Down

0 comments on commit 1dde9e1

Please sign in to comment.