From f60c1a3e969bfa580dfecca2e9ba7fee71447d9b Mon Sep 17 00:00:00 2001 From: Maximilian Roos <5635139+max-sixty@users.noreply.github.com> Date: Wed, 20 Sep 2023 12:57:16 -0700 Subject: [PATCH] Skip flaky test (#8219) * Skip flaky test --- xarray/tests/test_distributed.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/xarray/tests/test_distributed.py b/xarray/tests/test_distributed.py index 6a8cd9c457b..bfc37121597 100644 --- a/xarray/tests/test_distributed.py +++ b/xarray/tests/test_distributed.py @@ -168,6 +168,10 @@ def test_open_mfdataset_multiple_files_parallel_distributed(parallel, tmp_path): @requires_netCDF4 @pytest.mark.parametrize("parallel", (True, False)) def test_open_mfdataset_multiple_files_parallel(parallel, tmp_path): + if parallel: + pytest.skip( + "Flaky in CI. Would be a welcome contribution to make a similar test reliable." + ) lon = np.arange(100) time = xr.cftime_range("20010101", periods=100, calendar="360_day") data = np.random.random((time.size, lon.size))