Skip to content

Commit

Permalink
test: xfail tz_aware test for cuDF (#1118)
Browse files Browse the repository at this point in the history
* xfail tz_aware for cuDF

* add GitHub issue
  • Loading branch information
LiamConnors authored Oct 3, 2024
1 parent bfd42e5 commit 1a9af18
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/expr_and_series/cast_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,10 @@ class Banana:
def test_cast_datetime_tz_aware(
constructor: Constructor, request: pytest.FixtureRequest
) -> None:
if "dask" in str(constructor) or (
"pyarrow_table" in str(constructor) and is_windows()
if (
"dask" in str(constructor)
or "cudf" in str(constructor) # https://github.com/rapidsai/cudf/issues/16973
or ("pyarrow_table" in str(constructor) and is_windows())
):
request.applymarker(pytest.mark.xfail)

Expand Down
1 change: 1 addition & 0 deletions tests/frame/unpivot_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ def test_unpivot_var_value_names(
request: pytest.FixtureRequest,
) -> None:
if variable_name == "" and "cudf" in str(constructor):
# https://github.com/rapidsai/cudf/issues/16972
request.applymarker(pytest.mark.xfail)

df = nw.from_native(constructor(data))
Expand Down

0 comments on commit 1a9af18

Please sign in to comment.