From 619cfb5a7c227e576457cf7ae9c7d15b3d1f83a9 Mon Sep 17 00:00:00 2001 From: Illviljan <14371165+Illviljan@users.noreply.github.com> Date: Fri, 16 Aug 2024 20:13:26 +0200 Subject: [PATCH] Add flaky to TestNetCDF4ViaDaskData (#9373) --- xarray/tests/test_backends.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/xarray/tests/test_backends.py b/xarray/tests/test_backends.py index 507886ca678..be90f90a7ed 100644 --- a/xarray/tests/test_backends.py +++ b/xarray/tests/test_backends.py @@ -2096,6 +2096,11 @@ def test_write_inconsistent_chunks(self) -> None: assert actual["x"].encoding["chunksizes"] == (50, 100) assert actual["y"].encoding["chunksizes"] == (100, 50) + # Flaky test. Very open to contributions on fixing this + @pytest.mark.flaky + def test_roundtrip_coordinates(self) -> None: + super().test_roundtrip_coordinates() + @requires_zarr class ZarrBase(CFEncodedBase):