Skip to content

Commit

Permalink
skip incompatible tests
Browse files Browse the repository at this point in the history
  • Loading branch information
joellabes committed May 18, 2024
1 parent a7542a8 commit eb2cfcd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ jobs:
dbt deps --target redshift
dbt seed --target redshift --full-refresh
dbt compile --target redshift
dbt run --target redshift
dbt test --target redshift
dbt run --target redshift --exclude tag:skip+
dbt test --target redshift --exclude tag:skip+
- run:
name: "Run Tests - Snowflake"
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
{{ config(tags=['skip' if target.type in ('redshift') else 'runnable']) }}

select 1 as id, 'John Doe' as col1, object_construct('street', '123 Main St', 'city', 'Anytown', 'state', 'CA') as col2
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
{{ config(tags=['skip' if target.type in ('redshift') else 'runnable']) }}

select 1 as id, 'John Doe' as col1, object_construct('street', '123 Main St', 'city', 'Anytown', 'state', 'CA') as col2
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{{ config(tags=['skip' if target.type in ('redshift') else 'runnable']) }}

{{
audit_helper.quick_are_queries_identical(
"select * from " ~ ref('unit_test_model_a'),
Expand Down

0 comments on commit eb2cfcd

Please sign in to comment.