diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 75bb319..397cbda 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 on Linux and MacOS run: | - pytest --flake-finder --flake-runs=2 + if: matrix.os != 'windows-latest' + pytest + - name: Test on Windows + if: matrix.os == 'windows-latest + run: | + pytest --ignore tests/test_write_lev2_nc.py