From b30d0485ae749d86f914831272088334714a4107 Mon Sep 17 00:00:00 2001 From: Dave Date: Wed, 28 Feb 2024 00:06:09 +0100 Subject: [PATCH] switch to dummy destination for tests --- tests/load/pipeline/test_import_export_schema.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/load/pipeline/test_import_export_schema.py b/tests/load/pipeline/test_import_export_schema.py index fa1e8cf4bd..07ab421f62 100644 --- a/tests/load/pipeline/test_import_export_schema.py +++ b/tests/load/pipeline/test_import_export_schema.py @@ -27,7 +27,7 @@ def test_schemas_files_get_created() -> None: p = dlt.pipeline( pipeline_name=name, - destination="duckdb", + destination="dummy", import_schema_path=IMPORT_SCHEMA_PATH, export_schema_path=EXPORT_SCHEMA_PATH, ) @@ -50,7 +50,7 @@ def test_provided_columns_exported_to_import() -> None: p = dlt.pipeline( pipeline_name=name, - destination="duckdb", + destination="dummy", import_schema_path=IMPORT_SCHEMA_PATH, export_schema_path=EXPORT_SCHEMA_PATH, ) @@ -74,7 +74,7 @@ def test_import_schema_is_respected() -> None: p = dlt.pipeline( pipeline_name=name, - destination="duckdb", + destination="dummy", import_schema_path=IMPORT_SCHEMA_PATH, export_schema_path=EXPORT_SCHEMA_PATH, ) @@ -97,7 +97,7 @@ def test_import_schema_is_respected() -> None: # when creating a new schema (e.g. with full refresh), this will work p = dlt.pipeline( pipeline_name=name, - destination="duckdb", + destination="dummy", import_schema_path=IMPORT_SCHEMA_PATH, export_schema_path=EXPORT_SCHEMA_PATH, full_refresh=True,