Skip to content

Commit

Permalink
test: clean up xfail reasons and raises in window function filter test
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Aug 7, 2024
1 parent 70f68cd commit d317a5d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ibis/backends/tests/test_generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,11 @@ def test_filter(backend, alltypes, sorted_df, predicate_fn, expected_fn):
backend.assert_frame_equal(result, expected)


@pytest.mark.notimpl(["exasol"])
@pytest.mark.notyet(
["exasol"],
raises=ExaQueryError,
reason="sqlglot `eliminate_qualify` transform produces underscores in aliases, which is not allowed by exasol",
)
@pytest.mark.notimpl(
["druid"],
raises=PyDruidProgrammingError,
Expand Down

0 comments on commit d317a5d

Please sign in to comment.