Skip to content

Commit

Permalink
Don't run code coverage on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
tomwhite committed Apr 29, 2024
1 parent c6efd46 commit fd23854
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,9 @@ jobs:
- name: Run tests
run: |
pytest -v --cov=cubed --cov-report=term-missing --cov-fail-under=90
if [ "$RUNNER_OS" == "Windows" ]; then
pytest -v
else
pytest -v --cov=cubed --cov-report=term-missing --cov-fail-under=90
fi
shell: bash

0 comments on commit fd23854

Please sign in to comment.