Skip to content

Commit 7f99f9e

Browse files
Skip flaky test_open_mfdataset_manyfiles test (#8989)
* Skip flaky `test_open_mfdataset_manyfiles` test Don't just xfail, and not only on windows, since it can crash the worked * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 0d6662e commit 7f99f9e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

xarray/tests/test_backends.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -3813,11 +3813,11 @@ def skip_if_not_engine(engine):
38133813
pytest.importorskip(engine)
38143814

38153815

3816-
# Flaky test. Very open to contributions on fixing this
38173816
@requires_dask
38183817
@pytest.mark.filterwarnings("ignore:use make_scale(name) instead")
3819-
@pytest.mark.xfail(reason="Flaky test. Very open to contributions on fixing this")
3820-
@pytest.mark.skipif(ON_WINDOWS, reason="Skipping on Windows")
3818+
@pytest.mark.skip(
3819+
reason="Flaky test which can cause the worker to crash (so don't xfail). Very open to contributions fixing this"
3820+
)
38213821
def test_open_mfdataset_manyfiles(
38223822
readengine, nfiles, parallel, chunks, file_cache_maxsize
38233823
):

0 commit comments

Comments
 (0)