From f1fdf57b3a43e7b56defb0c84be89f84061fd5f1 Mon Sep 17 00:00:00 2001 From: Deepak Cherian Date: Mon, 6 Jan 2025 14:06:29 -0700 Subject: [PATCH] Remove test_dask xfails --- icechunk-python/tests/test_dask.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/icechunk-python/tests/test_dask.py b/icechunk-python/tests/test_dask.py index 291419528..cc4bef24f 100644 --- a/icechunk-python/tests/test_dask.py +++ b/icechunk-python/tests/test_dask.py @@ -10,7 +10,6 @@ def test_distributed() -> None: - pytest.xfail() with distributed.Client(): # type: ignore [no-untyped-call] ds = create_test_data().chunk(dim1=3, dim2=4) with roundtrip(ds) as actual: @@ -22,7 +21,6 @@ def test_distributed() -> None: def test_threaded() -> None: - pytest.xfail() with dask.config.set(scheduler="threads"): ds = create_test_data().chunk(dim1=3, dim2=4) print(ds)