diff --git a/icechunk-python/tests/test_dask.py b/icechunk-python/tests/test_dask.py index d2432ccca..031e32f22 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) with roundtrip(ds) as actual: