Skip to content
Merged
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
3 changes: 2 additions & 1 deletion python/cudf_polars/tests/expressions/test_agg.py
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,8 @@ def test_groupby_max_min_by_literal_column_value_unsupported(


@pytest.mark.skipif(
POLARS_VERSION_LT_138, reason="polars 1.38.0 introduced max_by and min_by"
POLARS_VERSION_LT_139,
reason="polars 1.38.0 introduced max_by and min_by, but has a bug with literals (fixed in 1.39)",
)
@pytest.mark.parametrize("agg", ["max_by", "min_by"])
def test_groupby_max_min_by_scalar_value(engine: pl.GPUEngine, agg: str) -> None:
Expand Down
Loading