Skip to content

Commit 11c1374

Browse files
fix: include fabricspark in delta file_format config for integration tests (#967)
The integration_tests dbt_project.yml only set file_format=delta for target.type == 'spark'. Fabricspark also uses Delta Lake (Fabric Lakehouse), so it needs the same config. Relates to ELE-5296 Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: Itamar Hartstein <haritamar@gmail.com>
1 parent 5fafd8d commit 11c1374

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

integration_tests/dbt_project/dbt_project.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ models:
2323
elementary_tests:
2424
tmp:
2525
+materialized: table
26-
+file_format: "{{ 'delta' if target.type == 'spark' else none }}"
26+
+file_format: "{{ 'delta' if target.type in ['spark', 'fabricspark'] else none }}"
2727

2828
elementary:
2929
+schema: elementary
3030
+enabled: "{{ var('elementary_enabled', True) }}"
31-
+file_format: "{{ 'delta' if target.type == 'spark' else none }}"
31+
+file_format: "{{ 'delta' if target.type in ['spark', 'fabricspark'] else none }}"

0 commit comments

Comments
 (0)