Skip to content

Commit

Permalink
enable tests with new streaming
Browse files Browse the repository at this point in the history
  • Loading branch information
etiennebacher committed Jan 24, 2025
1 parent aa42ce0 commit 3b363c8
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions py-polars/tests/unit/operations/namespaces/list/test_pad.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]}
Expand All @@ -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"),
[
Expand Down Expand Up @@ -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))
Expand Down

0 comments on commit 3b363c8

Please sign in to comment.