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 d719c87 commit a649a85
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions tests/frame/pivot_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,11 +249,7 @@ def test_pivot_names_out(
assert result == expected


def test_pivot_no_index_no_values(
constructor_eager: ConstructorEager, request: pytest.FixtureRequest
) -> None:
if "modin" in str(constructor_eager):
request.applymarker(pytest.mark.xfail)
def test_pivot_no_index_no_values(constructor_eager: ConstructorEager) -> None:
df = nw.from_native(constructor_eager(data_no_dups), eager_only=True)
with pytest.raises(ValueError, match="At least one of `values` and `index` must"):
df.pivot(on="col")
Expand Down

0 comments on commit a649a85

Please sign in to comment.