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