From 914969dfd128db37086b69179b8d403b19edeaca Mon Sep 17 00:00:00 2001 From: Lawrence Mitchell Date: Fri, 4 Sep 2026 10:27:41 +0100 Subject: [PATCH] Skip another test that fails due to a polars bug --- python/cudf_polars/tests/expressions/test_agg.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/cudf_polars/tests/expressions/test_agg.py b/python/cudf_polars/tests/expressions/test_agg.py index 9eaed5516445..dfb7800c113b 100644 --- a/python/cudf_polars/tests/expressions/test_agg.py +++ b/python/cudf_polars/tests/expressions/test_agg.py @@ -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: