From 45abb95186b3a21b2eb14869434bcaa8b15910ef Mon Sep 17 00:00:00 2001 From: BubbleCal Date: Mon, 18 May 2026 22:08:27 +0800 Subject: [PATCH] test(python): skip blob pandas test without lance --- python/python/tests/test_table.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/python/tests/test_table.py b/python/python/tests/test_table.py index d8a684018..116e1973e 100644 --- a/python/python/tests/test_table.py +++ b/python/python/tests/test_table.py @@ -57,6 +57,7 @@ def test_table_to_pandas_default_matches_arrow(tmp_db: DBConnection): def test_table_to_pandas_blob_bytes(tmp_db: DBConnection): + pytest.importorskip("lance") data = pa.table( { "id": pa.array([1, 2], pa.int64()),