Skip to content

Commit

Permalink
test(druid): change skip reason for test_arrow_timestamp_with_time_zone
Browse files Browse the repository at this point in the history
  • Loading branch information
kszucs committed Aug 24, 2023
1 parent 9c47033 commit 81e2f6e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ibis/backends/tests/test_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,9 @@ def test_roundtrip_delta(con, alltypes, tmp_path, monkeypatch):
duckdb=["duckdb<0.8.1"], raises=AssertionError, reason="bug in duckdb"
)
@pytest.mark.notimpl(["dask"], raises=NotImplementedError)
@pytest.mark.notimpl(["druid"], raises=sa.exc.ProgrammingError)
@pytest.mark.notimpl(
["druid"], raises=AttributeError, reason="string type is used for timestamp_col"
)
@pytest.mark.notimpl(["mssql"], raises=pa.ArrowTypeError)
@pytest.mark.notimpl(
["pyspark"], raises=NotImplementedError, reason="fetchmany not implemented"
Expand Down

0 comments on commit 81e2f6e

Please sign in to comment.