Skip to content

Commit

Permalink
test(polars): xfail now-panicking polars set operations
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Jan 21, 2025
1 parent 56d0c13 commit 15f075e
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions ibis/backends/tests/test_set_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,13 +169,13 @@ def test_table_set_operations_api(alltypes, method):
param(
True, marks=pytest.mark.notyet(["druid"], raises=PyDruidProgrammingError)
),
False,
param(False, marks=[pytest.mark.notyet(["polars"], strict=False)]),
],
)
@pytest.mark.parametrize(
"ordered",
[
False,
param(False, marks=[pytest.mark.notyet(["polars"], strict=False)]),
param(
True,
marks=pytest.mark.notyet(
Expand All @@ -199,7 +199,7 @@ def test_top_level_union(backend, con, alltypes, distinct, ordered):
@pytest.mark.parametrize(
"distinct",
[
True,
param(True, marks=[pytest.mark.notimpl(["polars"])]),
param(
False,
marks=[
Expand All @@ -211,6 +211,7 @@ def test_top_level_union(backend, con, alltypes, distinct, ordered):
raises=PsycoPg2InternalError,
reason="Feature is not yet implemented: INTERSECT all",
),
pytest.mark.notyet(["polars"]),
],
),
],
Expand All @@ -226,12 +227,15 @@ def test_top_level_union(backend, con, alltypes, distinct, ordered):
@pytest.mark.parametrize(
"ordered",
[
False,
param(False, marks=pytest.mark.notyet(["polars"])),
param(
True,
marks=pytest.mark.notyet(
["mssql"], reason="ORDER BY not supported in subquery"
),
marks=[
pytest.mark.notyet(
["mssql"], reason="ORDER BY not supported in subquery"
),
pytest.mark.notyet(["polars"]),
],
),
],
)
Expand Down

0 comments on commit 15f075e

Please sign in to comment.