Skip to content

Commit

Permalink
test(snowflake): enable xpassing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Nov 29, 2023
1 parent fa9831f commit e135682
Showing 1 changed file with 1 addition and 26 deletions.
27 changes: 1 addition & 26 deletions ibis/backends/tests/test_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -943,32 +943,7 @@ def test_range_single_argument(con, n):
reason="range and unnest aren't implemented upstream",
raises=com.OperationNotDefinedError,
)
@pytest.mark.parametrize(
"n",
[
param(
-2,
marks=[
pytest.mark.broken(
["snowflake"],
reason="snowflake unnests empty arrays to null",
raises=AssertionError,
)
],
),
param(
0,
marks=[
pytest.mark.broken(
["snowflake"],
reason="snowflake unnests empty arrays to null",
raises=AssertionError,
)
],
),
2,
],
)
@pytest.mark.parametrize("n", [-2, 0, 2])
@pytest.mark.notimpl(
["polars", "flink", "pandas", "dask"], raises=com.OperationNotDefinedError
)
Expand Down

0 comments on commit e135682

Please sign in to comment.