diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 75bb319..f2b4d4a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,6 +25,11 @@ jobs: if: matrix.os == 'ubuntu-latest' run: | pre-commit run --all-files --show-diff-on-failure - - name: Test with pytest-flakefinder + - name: Test with pytest run: | - pytest --flake-finder --flake-runs=2 + if: matrix.os != 'windows-latest' + pytest + - name: Test with pytest + run: | + if: matrix.os == 'windows-latest + pytest --ignore tests/test_write_lev2_nc.py