Skip to content

Commit

Permalink
test(bigquery): xfail on tests with arrays with nulls
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud authored and NickCrews committed Jul 31, 2024
1 parent 705d6c9 commit df43c33
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions ibis/backends/tests/test_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -625,6 +625,13 @@ def test_array_position(con, a, expected_array):
[[3, 2, None], [None], [42, 2], [2, 2]],
[[3, None], [None], [42], []],
id="nested-null",
marks=[
pytest.mark.notyet(
["bigquery"],
raises=GoogleBadRequest,
reason="bigquery does not support arrays with nulls",
),
],
),
param(
[[3, 2, None], [None], [42, 2], [2, 2], None],
Expand All @@ -634,8 +641,13 @@ def test_array_position(con, a, expected_array):
pytest.mark.notyet(
["clickhouse"],
raises=AssertionError,
reason="clickhouse still does not support nullable nested types",
)
reason="clickhouse does not support nullable nested types",
),
pytest.mark.notyet(
["bigquery"],
raises=GoogleBadRequest,
reason="bigquery does not support arrays with nulls",
),
],
),
],
Expand Down

0 comments on commit df43c33

Please sign in to comment.