Skip to content

Commit

Permalink
Do not run level2 tests on Windows because they fail
Browse files Browse the repository at this point in the history
  • Loading branch information
tukiains committed Dec 5, 2023
1 parent 89a0e82 commit ac99c92
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,15 @@ jobs:
if: matrix.os == 'ubuntu-latest'
run: |
pre-commit run --all-files --show-diff-on-failure
- name: Test with pytest-flakefinder
- name: Test with Ubuntu
if: matrix.os == 'ubuntu-latest'
run: |
pytest
- name: Test with MacOS
if: matrix.os == 'macos-latest'
run: |
pytest
- name: Test with Windows
if: matrix.os == 'windows-latest'
run: |
pytest --flake-finder --flake-runs=2
pytest --ignore tests/test_write_lev2_nc.py

0 comments on commit ac99c92

Please sign in to comment.