Skip to content

Commit

Permalink
xfail test_unpivot_mixed_types for cuDF
Browse files Browse the repository at this point in the history
  • Loading branch information
LiamConnors committed Oct 7, 2024
1 parent f2b7a40 commit bfea1f5
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions tests/frame/unpivot_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,13 @@ def test_unpivot_mixed_types(
data: dict[str, Any],
expected_dtypes: list[DType],
) -> None:
if "dask" in str(constructor) or (
"pyarrow_table" in str(constructor)
and parse_version(pa.__version__) < parse_version("14.0.0")
if (
"dask" in str(constructor)
or "cudf" in str(constructor)
or (
"pyarrow_table" in str(constructor)
and parse_version(pa.__version__) < parse_version("14.0.0")
)
):
request.applymarker(pytest.mark.xfail)
df = nw.from_native(constructor(data))
Expand Down

0 comments on commit bfea1f5

Please sign in to comment.