Skip to content

Commit

Permalink
xfail
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoGorelli committed Dec 21, 2024
1 parent 4e4f754 commit d719c87
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/frame/pivot_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,11 @@ def test_pivot_no_index(
) -> None:
if any(x in str(constructor_eager) for x in ("pyarrow_table", "modin")):
request.applymarker(pytest.mark.xfail)
if ("polars" in str(constructor_eager) and POLARS_VERSION < (1, 0)) or (
"pandas" in str(constructor_eager) and PANDAS_VERSION < (1, 1)
):
# not implemented
request.applymarker(pytest.mark.xfail)
df = nw.from_native(constructor_eager(data_no_dups), eager_only=True)
result = df.pivot(on="col", values="foo").sort("ix", "bar")
expected = {
Expand Down

0 comments on commit d719c87

Please sign in to comment.