From 81e2f6ee9aca360d2902e4b3ab3cfe3c40d73078 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kriszti=C3=A1n=20Sz=C5=B1cs?= Date: Thu, 24 Aug 2023 14:59:59 +0200 Subject: [PATCH] test(druid): change skip reason for test_arrow_timestamp_with_time_zone --- ibis/backends/tests/test_export.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ibis/backends/tests/test_export.py b/ibis/backends/tests/test_export.py index cf6347fbf3b88..7d8c4bbc63abf 100644 --- a/ibis/backends/tests/test_export.py +++ b/ibis/backends/tests/test_export.py @@ -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"