Skip to content

Commit

Permalink
xfail test_spilling_local_cuda_cluster[True]
Browse files Browse the repository at this point in the history
Fixed in #451
  • Loading branch information
madsbk committed Dec 16, 2020
1 parent 78353fc commit 02c5f49
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions dask_cuda/tests/test_proxy.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import operator
import pickle

import pandas
import pytest
from pandas.testing import assert_frame_equal

Expand Down Expand Up @@ -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 <https://github.com/rapidsai/dask-cuda/pull/451>"
)
assert_frame_equal(got.to_pandas(), df.to_pandas())


Expand Down

0 comments on commit 02c5f49

Please sign in to comment.