From 3b363c8c3161ab42c3903bd4ec3de1a10ebff13f Mon Sep 17 00:00:00 2001 From: etiennebacher Date: Fri, 24 Jan 2025 21:25:13 +0100 Subject: [PATCH] enable tests with new streaming --- py-polars/tests/unit/operations/namespaces/list/test_pad.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/py-polars/tests/unit/operations/namespaces/list/test_pad.py b/py-polars/tests/unit/operations/namespaces/list/test_pad.py index e239adb4c656..bc0a67ce81a3 100644 --- a/py-polars/tests/unit/operations/namespaces/list/test_pad.py +++ b/py-polars/tests/unit/operations/namespaces/list/test_pad.py @@ -13,7 +13,6 @@ from polars.testing import assert_frame_equal -@pytest.mark.may_fail_auto_streaming def test_list_pad_start_with_expr() -> None: df = pl.DataFrame( {"a": [[1], [], [1, 2, 3]], "int": [0, 999, 2], "float": [0.0, 999, 2]} @@ -31,7 +30,6 @@ def test_list_pad_start_with_expr() -> None: assert_frame_equal(result, expected) -@pytest.mark.may_fail_auto_streaming @pytest.mark.parametrize( ("data", "fill_value", "expect"), [ @@ -67,7 +65,6 @@ def test_list_pad_start_zero_width() -> None: assert_frame_equal(result, expected) -@pytest.mark.may_fail_auto_streaming def test_list_pad_start_casts_to_supertype() -> None: df = pl.DataFrame({"a": [["a"], ["a", "b"]]}) result = df.select(pl.col("a").list.pad_start(1, width=2))