From 6064cd45b47971a9ef5230bfb15d1c34ebb14ff0 Mon Sep 17 00:00:00 2001 From: Brendan Clement Date: Wed, 3 Jun 2026 11:55:01 -0700 Subject: [PATCH] test: skip async namespace branch 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 818c30ef8..31d6f5135 100644 --- a/python/python/tests/test_table.py +++ b/python/python/tests/test_table.py @@ -1009,6 +1009,7 @@ def test_open_table_with_branch(tmp_path): @pytest.mark.asyncio async def test_async_namespace_open_table_with_branch(tmp_path): + pytest.importorskip("lance") # "dir" impl is lance.namespace.DirectoryNamespace db = lancedb.connect_namespace_async("dir", {"root": str(tmp_path)}) await db.create_namespace(["ns1"]) table = await db.create_table("t", [{"id": 1}], namespace_path=["ns1"])