Skip to content

Commit

Permalink
chore(datafusion): unxfail passing approx_quantile test (#9911)
Browse files Browse the repository at this point in the history
Test added in #9881 now passes since #9884.
  • Loading branch information
jcrist authored Aug 24, 2024
1 parent 2dd2c3f commit 912a8d1
Showing 1 changed file with 1 addition and 17 deletions.
18 changes: 1 addition & 17 deletions ibis/backends/tests/test_aggregation.py
Original file line number Diff line number Diff line change
Expand Up @@ -876,23 +876,7 @@ def test_quantile(
assert pytest.approx(result) == expected


@pytest.mark.parametrize(
"filtered",
[
False,
param(
True,
marks=[
pytest.mark.notyet(
["datafusion"],
raises=Exception,
reason="datafusion 38.0.1 has a bug in FILTER handling that causes this test to fail",
strict=False,
)
],
),
],
)
@pytest.mark.parametrize("filtered", [False, True])
@pytest.mark.parametrize(
"multi",
[
Expand Down

0 comments on commit 912a8d1

Please sign in to comment.