From 8368bd1816bab68694d8ab3891896c6682804002 Mon Sep 17 00:00:00 2001 From: Liam Connors Date: Thu, 12 Sep 2024 19:04:25 -0400 Subject: [PATCH] xfail cuDF tests for join_asof --- tests/frame/join_test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/frame/join_test.py b/tests/frame/join_test.py index f16cb691b..f510c947b 100644 --- a/tests/frame/join_test.py +++ b/tests/frame/join_test.py @@ -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)) @@ -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) @@ -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))