Skip to content

Commit bd5367b

Browse files
authored
Reenable UCX-Py tests that used to segfault (#5076)
1 parent ea2b643 commit bd5367b

File tree

1 file changed

+2
-12
lines changed

1 file changed

+2
-12
lines changed

distributed/comm/tests/test_ucx.py

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -167,21 +167,11 @@ async def test_ucx_deserialize():
167167
lambda cudf: cudf.DataFrame([1]).head(0),
168168
lambda cudf: cudf.DataFrame([1.0]).head(0),
169169
lambda cudf: cudf.DataFrame({"a": []}),
170-
pytest.param(
171-
lambda cudf: cudf.DataFrame({"a": ["a"]}).head(0),
172-
marks=pytest.mark.skip(
173-
reason="This test segfaults for some reason. So skip running it entirely."
174-
),
175-
),
170+
lambda cudf: cudf.DataFrame({"a": ["a"]}).head(0),
176171
lambda cudf: cudf.DataFrame({"a": [1.0]}).head(0),
177172
lambda cudf: cudf.DataFrame({"a": [1]}).head(0),
178173
lambda cudf: cudf.DataFrame({"a": [1, 2, None], "b": [1.0, 2.0, None]}),
179-
pytest.param(
180-
lambda cudf: cudf.DataFrame({"a": ["Check", "str"], "b": ["Sup", "port"]}),
181-
marks=pytest.mark.skip(
182-
reason="This test segfaults for some reason. So skip running it entirely."
183-
),
184-
),
174+
lambda cudf: cudf.DataFrame({"a": ["Check", "str"], "b": ["Sup", "port"]}),
185175
],
186176
)
187177
async def test_ping_pong_cudf(g):

0 commit comments

Comments
 (0)