Skip to content

Commit aab856b

Browse files
Xfail failing test (#6211)
* Xfail failing test * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * . * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * if it breaks xfail it Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 5470d93 commit aab856b

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

xarray/tests/test_distributed.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,7 @@ def test_dask_distributed_cfgrib_integration_test(loop) -> None:
184184
assert_allclose(actual, expected)
185185

186186

187+
@pytest.mark.xfail(reason="https://github.com/pydata/xarray/pull/6211")
187188
@gen_cluster(client=True)
188189
async def test_async(c, s, a, b) -> None:
189190
x = create_test_data()
@@ -216,6 +217,7 @@ def test_hdf5_lock() -> None:
216217
assert isinstance(HDF5_LOCK, dask.utils.SerializableLock)
217218

218219

220+
@pytest.mark.xfail(reason="https://github.com/pydata/xarray/pull/6211")
219221
@gen_cluster(client=True)
220222
async def test_serializable_locks(c, s, a, b) -> None:
221223
def f(x, lock=None):

xarray/tests/test_variable.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2161,6 +2161,12 @@ def test_dask_rolling(self, dim, window, center):
21612161
assert actual.shape == expected.shape
21622162
assert_equal(actual, expected)
21632163

2164+
@pytest.mark.xfail(
2165+
reason="https://github.com/pydata/xarray/issues/6209#issuecomment-1025116203"
2166+
)
2167+
def test_multiindex(self):
2168+
super().test_multiindex()
2169+
21642170

21652171
@requires_sparse
21662172
class TestVariableWithSparse:

0 commit comments

Comments
 (0)