Skip to content

Commit 55a0e39

Browse files
Pin dbt-fusion version to 2.0.0-preview.76 to fix CI failures (#917)
* Skip failing tests for dbt-fusion - test_dbt_invocations: yaml_selector field not populated in fusion - test_sample_count_unlimited: meta config override not working in fusion - test_schema_changes: schema change detection not working in fusion Co-Authored-By: Yosef Arbiv <yosef.arbiv@gmail.com> * Pin dbt-fusion version to 2.0.0-preview.76 and revert skip markers Co-Authored-By: Yosef Arbiv <yosef.arbiv@gmail.com> * Read dbt-fusion version from config file instead of hardcoding in workflow Co-Authored-By: Yosef Arbiv <yosef.arbiv@gmail.com> --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: Yosef Arbiv <yosef.arbiv@gmail.com>
1 parent e0f5c01 commit 55a0e39

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

.dbt-fusion-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2.0.0-preview.76

.github/workflows/test-warehouse.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,8 @@ jobs:
133133
- name: Install dbt-fusion
134134
if: inputs.dbt-version == 'fusion'
135135
run: |
136-
curl -fsSL https://public.cdn.getdbt.com/fs/install/install.sh | sh -s -- --update
136+
FUSION_VERSION=$(cat dbt-data-reliability/.dbt-fusion-version)
137+
curl -fsSL https://public.cdn.getdbt.com/fs/install/install.sh | sh -s -- --version "$FUSION_VERSION"
137138
138139
- name: Install Elementary
139140
run: pip install "./elementary[${{ (inputs.warehouse-type == 'databricks_catalog' && 'databricks') || inputs.warehouse-type }}]"

0 commit comments

Comments
 (0)