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 4794612
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,8 @@ 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

0 comments on commit 4794612

Please sign in to comment.