From fc558f1b3c29a868cd699cf231bc6ebddb37d852 Mon Sep 17 00:00:00 2001 From: Gatefixer <313497061+lancedb-gatefixer[bot]@users.noreply.github.com> Date: Sat, 8 Aug 2026 12:31:17 +0000 Subject: [PATCH] test(python): skip pandas regression without pandas --- 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 9300a188d..39122fae3 100644 --- a/python/python/tests/test_table.py +++ b/python/python/tests/test_table.py @@ -2858,6 +2858,7 @@ def test_create_f16_table(mem_db: DBConnection): ) def test_f16_index_search_with_open_batch_reader(mem_db: DBConnection, index_config): """Regression test for https://github.com/lancedb/lancedb/issues/2611.""" + pytest.importorskip("pandas") dimension = 32 num_rows = 512 rng = np.random.default_rng(42)