Skip to content

Commit

Permalink
Remove xfail mark from cuDF empty dataframe test (#154)
Browse files Browse the repository at this point in the history
Empty cuDF dataframe serialization was fixed in rapidsai/cudf#14705 .

Closes #149 .

Authors:
  - Peter Andreas Entschev (https://github.com/pentschev)

Approvers:
  - Lawrence Mitchell (https://github.com/wence-)

URL: #154
  • Loading branch information
pentschev authored Jan 9, 2024
1 parent 8729b55 commit 02c85e3
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions python/distributed-ucxx/distributed_ucxx/tests/test_ucxx.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,12 +180,7 @@ async def test_ucxx_deserialize(ucxx_loop):
[
lambda cudf: cudf.Series([1, 2, 3]),
lambda cudf: cudf.Series([], dtype=object),
pytest.param(
lambda cudf: cudf.DataFrame([], dtype=object),
marks=pytest.mark.xfail(
reason="https://github.com/rapidsai/ucxx/issues/149"
),
),
lambda cudf: cudf.DataFrame([], dtype=object),
lambda cudf: cudf.DataFrame([1]).head(0),
lambda cudf: cudf.DataFrame([1.0]).head(0),
lambda cudf: cudf.DataFrame({"a": []}),
Expand Down

0 comments on commit 02c85e3

Please sign in to comment.