Skip to content

Commit 3b363c8

Browse files
committed
enable tests with new streaming
1 parent aa42ce0 commit 3b363c8

File tree

1 file changed

+0
-3
lines changed
  • py-polars/tests/unit/operations/namespaces/list

1 file changed

+0
-3
lines changed

Diff for: py-polars/tests/unit/operations/namespaces/list/test_pad.py

-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
from polars.testing import assert_frame_equal
1414

1515

16-
@pytest.mark.may_fail_auto_streaming
1716
def test_list_pad_start_with_expr() -> None:
1817
df = pl.DataFrame(
1918
{"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:
3130
assert_frame_equal(result, expected)
3231

3332

34-
@pytest.mark.may_fail_auto_streaming
3533
@pytest.mark.parametrize(
3634
("data", "fill_value", "expect"),
3735
[
@@ -67,7 +65,6 @@ def test_list_pad_start_zero_width() -> None:
6765
assert_frame_equal(result, expected)
6866

6967

70-
@pytest.mark.may_fail_auto_streaming
7168
def test_list_pad_start_casts_to_supertype() -> None:
7269
df = pl.DataFrame({"a": [["a"], ["a", "b"]]})
7370
result = df.select(pl.col("a").list.pad_start(1, width=2))

0 commit comments

Comments
 (0)