From 29fbb02fd85ee72fa7867049126c9c7c3da249bc Mon Sep 17 00:00:00 2001 From: Peter Andreas Entschev Date: Mon, 8 Jan 2024 08:50:38 -0800 Subject: [PATCH] Remove xfail mark from cuDF empty dataframe test --- .../distributed-ucxx/distributed_ucxx/tests/test_ucxx.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/python/distributed-ucxx/distributed_ucxx/tests/test_ucxx.py b/python/distributed-ucxx/distributed_ucxx/tests/test_ucxx.py index 03cbb3f4..91af3dad 100644 --- a/python/distributed-ucxx/distributed_ucxx/tests/test_ucxx.py +++ b/python/distributed-ucxx/distributed_ucxx/tests/test_ucxx.py @@ -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": []}),