From e14185ae93c5c6057b300c592b0fe18cb460cd61 Mon Sep 17 00:00:00 2001 From: Phillip Cloud <417981+cpcloud@users.noreply.github.com> Date: Mon, 21 Aug 2023 06:00:36 -0400 Subject: [PATCH] fix(polars): polars no longer panics on a value_counts-ed expression --- ibis/backends/tests/test_aggregation.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/ibis/backends/tests/test_aggregation.py b/ibis/backends/tests/test_aggregation.py index e6f2022555ec..ecb550069996 100644 --- a/ibis/backends/tests/test_aggregation.py +++ b/ibis/backends/tests/test_aggregation.py @@ -1483,11 +1483,6 @@ def test_group_concat_over_window(backend, con): @pytest.mark.notimpl(["dask"], raises=NotImplementedError) -@pytest.mark.notyet( - ["polars"], - reason="polars panics", - raises=BaseException, # BaseException is required to catch the panic -) def test_value_counts_on_expr(backend, alltypes, df): expr = alltypes.bigint_col.add(1).value_counts() columns = expr.columns