Skip to content

Commit

Permalink
test(json): sqlite version xfail
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Apr 13, 2024
1 parent 1ab278b commit f583215
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ibis/backends/tests/test_json.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,11 @@ def test_json_array(backend, json_t):
backend.assert_series_equal(result, expected)


@pytest.mark.notyet(
["sqlite"],
condition=vparse(sqlite3.sqlite_version) < vparse("3.38.0"),
reason="JSON not supported in SQLite < 3.38.0",
)
@pytest.mark.notimpl(["dask", "pandas", "risingwave"])
@pytest.mark.notyet(
["trino", "flink"], reason="should work but doesn't deserialize JSON"
Expand Down

0 comments on commit f583215

Please sign in to comment.