Skip to content

Commit 0fc1465

Browse files
committed
More flaky marks
1 parent 9379e12 commit 0fc1465

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

xarray/tests/test_backends.py

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2990,11 +2990,6 @@ def test_chunked_cftime_datetime(self) -> None:
29902990
assert original.chunks == actual.chunks
29912991

29922992
def test_vectorized_indexing_negative_step(self) -> None:
2993-
if not has_dask:
2994-
pytest.xfail(
2995-
reason="zarr without dask handles negative steps in slices incorrectly"
2996-
)
2997-
29982993
super().test_vectorized_indexing_negative_step()
29992994

30002995

@@ -3824,9 +3819,10 @@ def skip_if_not_engine(engine):
38243819
pytest.importorskip(engine)
38253820

38263821

3822+
# Flaky test. Very open to contributions on fixing this
38273823
@requires_dask
38283824
@pytest.mark.filterwarnings("ignore:use make_scale(name) instead")
3829-
@pytest.mark.xfail(reason="Flaky test. Very open to contributions on fixing this")
3825+
@pytest.mark.flaky
38303826
def test_open_mfdataset_manyfiles(
38313827
readengine, nfiles, parallel, chunks, file_cache_maxsize
38323828
):
@@ -4529,7 +4525,8 @@ def test_open_multi_dataset(self) -> None:
45294525
) as actual:
45304526
assert_identical(expected, actual)
45314527

4532-
@pytest.mark.xfail(reason="Flaky test. Very open to contributions on fixing this")
4528+
# Flaky test. Very open to contributions on fixing this
4529+
@pytest.mark.flaky
45334530
def test_dask_roundtrip(self) -> None:
45344531
with create_tmp_file() as tmp:
45354532
data = create_test_data()

0 commit comments

Comments
 (0)