Skip to content

Commit

Permalink
Skip flaky test (#8219)
Browse files Browse the repository at this point in the history
* Skip flaky test
  • Loading branch information
max-sixty authored Sep 20, 2023
1 parent 2b784f2 commit f60c1a3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions xarray/tests/test_distributed.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit f60c1a3

Please sign in to comment.