From 3e2b17600e5757861645dd25c83a937c8687b0b1 Mon Sep 17 00:00:00 2001 From: George Sittas Date: Tue, 29 Jul 2025 19:40:11 +0300 Subject: [PATCH] Chore: ensure ducklake testing artifact is under a tmp path --- tests/core/engine_adapter/test_duckdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/core/engine_adapter/test_duckdb.py b/tests/core/engine_adapter/test_duckdb.py index 6442b1a0b4..7799cefe0c 100644 --- a/tests/core/engine_adapter/test_duckdb.py +++ b/tests/core/engine_adapter/test_duckdb.py @@ -114,7 +114,7 @@ def test_ducklake_partitioning(adapter: EngineAdapter, duck_conn, tmp_path): duck_conn.install_extension("ducklake") duck_conn.load_extension("ducklake") duck_conn.execute( - f"ATTACH 'ducklake:{catalog}.ducklake' AS {catalog} (DATA_PATH '{tmp_path}');" + f"ATTACH 'ducklake:{tmp_path}/{catalog}.ducklake' AS {catalog} (DATA_PATH '{tmp_path}');" ) # no partitions on catalog creation