Skip to content

Commit 7662b12

Browse files
authored
Merge pull request #564 from dbt-labs/fix/databricks-float-precision-test
fix: use target.type for Databricks float precision test exclusion
2 parents 7333c0c + 5aafaf3 commit 7662b12

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

integration_tests/seeds/tests/tests_seeds.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ seeds:
3232
- total_models
3333
- total_tests
3434
- tested_models
35-
- "{{ 'test_coverage_pct' if not target.name in ['duckdb', 'databricks', 'trino'] else 'tested_models' }}"
36-
- test_to_model_ratio
35+
- "{{ 'test_coverage_pct' if target.type not in ['duckdb', 'databricks', 'trino'] else 'tested_models' }}"
36+
- "{{ 'test_to_model_ratio' if target.type not in ['duckdb', 'databricks', 'trino'] else 'tested_models' }}"
3737
- staging_test_coverage_pct
3838
- intermediate_test_coverage_pct
3939
- marts_test_coverage_pct

0 commit comments

Comments
 (0)