From 02c5f496642123a41b9dfb7ec05f998c1c58dc66 Mon Sep 17 00:00:00 2001 From: "Mads R. B. Kristensen" Date: Wed, 16 Dec 2020 14:13:25 +0100 Subject: [PATCH] xfail test_spilling_local_cuda_cluster[True] Fixed in https://github.com/rapidsai/dask-cuda/pull/451 --- dask_cuda/tests/test_proxy.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dask_cuda/tests/test_proxy.py b/dask_cuda/tests/test_proxy.py index 9977a185d..fc576058f 100644 --- a/dask_cuda/tests/test_proxy.py +++ b/dask_cuda/tests/test_proxy.py @@ -1,6 +1,7 @@ import operator import pickle +import pandas import pytest from pandas.testing import assert_frame_equal @@ -222,6 +223,10 @@ def task(x): ddf = dask_cudf.from_cudf(df, npartitions=1) ddf = ddf.map_partitions(task, meta=df.head()) got = ddf.compute() + if isinstance(got, pandas.Series): + pytest.xfail( + "BUG fixed by " + ) assert_frame_equal(got.to_pandas(), df.to_pandas())