diff --git a/compliance_checker/tests/test_cli.py b/compliance_checker/tests/test_cli.py index 86ed3390..fefd94d2 100644 --- a/compliance_checker/tests/test_cli.py +++ b/compliance_checker/tests/test_cli.py @@ -236,6 +236,10 @@ def _check_libnetcdf_version(): < 8.0 ) + @pytest.mark.skipif( + platform.system() == "Windows", + reason="NCZarr triggers a segfault on Windows.", + ) @pytest.mark.skipif( subprocess.check_output(ncconfig + ["--has-nczarr"]) != b"yes\n", reason="NCZarr is not available.",