Skip to content

Commit f60c1a3

Browse files
authored
Skip flaky test (#8219)
* Skip flaky test
1 parent 2b784f2 commit f60c1a3

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

xarray/tests/test_distributed.py

+4
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,10 @@ def test_open_mfdataset_multiple_files_parallel_distributed(parallel, tmp_path):
168168
@requires_netCDF4
169169
@pytest.mark.parametrize("parallel", (True, False))
170170
def test_open_mfdataset_multiple_files_parallel(parallel, tmp_path):
171+
if parallel:
172+
pytest.skip(
173+
"Flaky in CI. Would be a welcome contribution to make a similar test reliable."
174+
)
171175
lon = np.arange(100)
172176
time = xr.cftime_range("20010101", periods=100, calendar="360_day")
173177
data = np.random.random((time.size, lon.size))

0 commit comments

Comments
 (0)