Skip to content

Commit

Permalink
Remove isngore of test_scripts.py
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewfeickert committed Oct 26, 2023
1 parent 8b51d25 commit 9eea6d7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,13 @@ jobs:
- name: List installed Python packages
run: python -m pip list

- name: Test possible failure first
run: |
coverage run --module pytest tests/test_scripts.py
- name: Test with pytest and coverage
# FIXME: ignore tests/test_scripts.py as runner breaks on Windows currently
run: |
coverage run --module pytest --ignore tests/test_scripts.py --ignore tests/contrib --ignore tests/benchmarks --ignore tests/test_notebooks.py
coverage run --module pytest --ignore tests/contrib --ignore tests/benchmarks --ignore tests/test_notebooks.py
- name: Coverage report for core project
run: |
Expand Down

0 comments on commit 9eea6d7

Please sign in to comment.