Skip to content

Commit

Permalink
another xfail
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoGorelli committed Jan 9, 2025
1 parent 96a08fd commit 1f10895
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/frame/join_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@ def test_inner_join_single_key(constructor: Constructor) -> None:
assert_equal_data(result_on, expected)


def test_cross_join(constructor: Constructor) -> None:
def test_cross_join(constructor: Constructor, request: pytest.FixtureRequest) -> None:
if "duckdb" in str(constructor) and DUCKDB_VERSION < (1, 1, 4):
request.applymarker(pytest.mark.xfail)
data = {"antananarivo": [1, 3, 2]}
df = nw.from_native(constructor(data))
result = df.join(df, how="cross").sort("antananarivo", "antananarivo_right") # type: ignore[arg-type]
Expand Down

0 comments on commit 1f10895

Please sign in to comment.