Skip to content

Commit

Permalink
test: xfail on bigquery, datafusion and flink
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud authored and kszucs committed Nov 21, 2023
1 parent c2e8d9d commit 3cbed71
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ibis/backends/tests/test_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -860,7 +860,7 @@ def flatten_data():
@pytest.mark.notyet(
["bigquery"],
reason="BigQuery doesn't support arrays of arrays",
raises=BadRequest,
raises=TypeError,
)
@pytest.mark.notyet(
["postgres"],
Expand Down Expand Up @@ -900,6 +900,8 @@ def flatten_data():
),
],
)
@pytest.mark.notimpl(["flink"], raises=com.OperationNotDefinedError)
@pytest.mark.notyet(["datafusion"], raises=com.OperationNotDefinedError)
def test_array_flatten(backend, flatten_data, column, expected):
data = flatten_data[column]
t = ibis.memtable(
Expand Down

0 comments on commit 3cbed71

Please sign in to comment.