Skip to content

Commit

Permalink
test(backends): xfail json-unsupported backends
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Feb 25, 2024
1 parent 6b8a6ae commit 7be7895
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions ibis/backends/tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1471,6 +1471,21 @@ def test_close_connection(con):
new_con.list_tables()


@pytest.mark.notyet(
["clickhouse"],
raises=AttributeError,
reason="JSON extension is experimental and not enabled by default in testing",
)
@pytest.mark.notyet(
["datafusion", "polars", "mssql", "druid", "oracle", "exasol", "impala"],
raises=AttributeError,
reason="JSON type not implemented",
)
@pytest.mark.notimpl(
["risingwave", "sqlite"],
raises=pa.ArrowTypeError,
reason="mismatch between output value and expected input type",
)
def test_json_to_pyarrow(con):
t = con.tables.json_t
table = t.to_pyarrow()
Expand Down

0 comments on commit 7be7895

Please sign in to comment.