From 658fccc3268bd16226cc5815bf00eed349fe1553 Mon Sep 17 00:00:00 2001 From: Jacob Tomlinson Date: Thu, 7 Jan 2021 23:15:44 +0000 Subject: [PATCH] Xfail normalization tests (#4411) --- distributed/tests/test_client.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/distributed/tests/test_client.py b/distributed/tests/test_client.py index 7aab958f3a..724a738777 100644 --- a/distributed/tests/test_client.py +++ b/distributed/tests/test_client.py @@ -4354,6 +4354,7 @@ def test_normalize_collection_with_released_futures(c): assert res == sol +@pytest.mark.xfail(reason="https://github.com/dask/distributed/issues/4404") @gen_cluster(client=True) async def test_auto_normalize_collection(c, s, a, b): da = pytest.importorskip("dask.array") @@ -4380,6 +4381,7 @@ async def test_auto_normalize_collection(c, s, a, b): assert end - start < 1 +@pytest.mark.xfail(reason="https://github.com/dask/distributed/issues/4404") def test_auto_normalize_collection_sync(c): da = pytest.importorskip("dask.array") x = da.ones(10, chunks=5)