Skip to content

Commit

Permalink
switch to dummy destination for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sh-rp committed Feb 28, 2024
1 parent 9779455 commit b30d048
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/load/pipeline/test_import_export_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)
Expand All @@ -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,
)
Expand All @@ -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,
)
Expand All @@ -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,
Expand Down

0 comments on commit b30d048

Please sign in to comment.