From 1eb40a27c5b54ac3df48b747287bdaa89e8a542b Mon Sep 17 00:00:00 2001 From: Maximilian Roos Date: Mon, 22 Jan 2024 15:24:07 -0800 Subject: [PATCH] xfail zarr test on Windows I see this failing quite a lot of the time... Ofc open to a proper solution but in the meantime setting this to xfail --- xarray/tests/test_backends.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/xarray/tests/test_backends.py b/xarray/tests/test_backends.py index d01cfd7ff55..b31b9011664 100644 --- a/xarray/tests/test_backends.py +++ b/xarray/tests/test_backends.py @@ -2945,6 +2945,10 @@ def create_zarr_target(self): @requires_zarr +@pytest.mark.skipif( + ON_WINDOWS, + reason="Very flaky on Windows CI. Can re-enable assuming it starts consistently passing.", +) class TestZarrDirectoryStore(ZarrBase): @contextlib.contextmanager def create_zarr_target(self):