Skip to content

Commit

Permalink
test: xfail cuDF tests for join_asof (#959)
Browse files Browse the repository at this point in the history
  • Loading branch information
LiamConnors authored Sep 13, 2024
1 parent aa5efe1 commit fc6fb53
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/frame/join_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ def test_join_keys_exceptions(constructor: Any, how: str) -> None:


def test_joinasof_numeric(constructor: Any, request: Any) -> None:
if "pyarrow_table" in str(constructor):
if "pyarrow_table" in str(constructor) or "cudf" in str(constructor):
request.applymarker(pytest.mark.xfail)
if parse_version(pd.__version__) < (2, 1) and (
("pandas_pyarrow" in str(constructor)) or ("pandas_nullable" in str(constructor))
Expand Down Expand Up @@ -409,7 +409,7 @@ def test_joinasof_numeric(constructor: Any, request: Any) -> None:


def test_joinasof_time(constructor: Any, request: Any) -> None:
if "pyarrow_table" in str(constructor):
if "pyarrow_table" in str(constructor) or "cudf" in str(constructor):
request.applymarker(pytest.mark.xfail)
if parse_version(pd.__version__) < (2, 1) and ("pandas_pyarrow" in str(constructor)):
request.applymarker(pytest.mark.xfail)
Expand Down Expand Up @@ -487,7 +487,7 @@ def test_joinasof_time(constructor: Any, request: Any) -> None:


def test_joinasof_by(constructor: Any, request: Any) -> None:
if "pyarrow_table" in str(constructor):
if "pyarrow_table" in str(constructor) or "cudf" in str(constructor):
request.applymarker(pytest.mark.xfail)
if parse_version(pd.__version__) < (2, 1) and (
("pandas_pyarrow" in str(constructor)) or ("pandas_nullable" in str(constructor))
Expand Down

0 comments on commit fc6fb53

Please sign in to comment.