Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions python/cudf_polars/cudf_polars/testing/inject_gpu_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,10 @@ def pytest_report_header(config: pytest.Config) -> str:


TESTS_TO_SKIP: Mapping[str, str] = {
# TODO: remove once CI SQLite >= 3.44.0
# sqlite3.OperationalError: near "ORDER": syntax error on older versions
"tests/unit/sql/test_string_agg.py::test_string_agg_aliases[STRING_AGG]": "SQLite version in CI does not support ORDER BY in string aggregation",
"tests/unit/sql/test_string_agg.py::test_string_agg_aliases[GROUP_CONCAT]": "SQLite version in CI does not support ORDER BY in string aggregation",
"tests/unit/operations/test_profile.py::test_profile_with_cse": "Shape assertion won't match",
# value_counts / struct-expansion row ordering is not guaranteed, so the GPU
# result may or may not match CPU. Skip rather than xfail to avoid a flaky
Expand Down
Loading