Skip to content

Commit

Permalink
add user role disable to dbt test
Browse files Browse the repository at this point in the history
  • Loading branch information
fivetran-reneeli committed Jan 26, 2022
1 parent 3c0f76d commit bb93364
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
dbt deps
dbt seed --target spark --full-refresh
dbt run --vars '{using_account_history_mode_active_records: true, using_opportunity_history_mode_active_records: true, using_user_role_history_mode_active_records: true, using_user_history_mode_active_records: true, salesforce__user_role_enabled: false}' --target spark --full-refresh
dbt test --target spark
dbt test --vars '{salesforce__user_role_enabled: false}' --target spark
dbt run --target spark --full-refresh
dbt test --target spark
- run:
Expand All @@ -46,7 +46,7 @@ jobs:
dbt deps
dbt seed --target postgres --full-refresh
dbt run --vars '{using_account_history_mode_active_records: true, using_opportunity_history_mode_active_records: true, using_user_role_history_mode_active_records: true, using_user_history_mode_active_records: true, salesforce__user_role_enabled: false}' --target postgres --full-refresh
dbt test --target postgres
dbt test --vars '{salesforce__user_role_enabled: false}' --target postgres
dbt run --target postgres --full-refresh
dbt test --target postgres
- run:
Expand All @@ -58,7 +58,7 @@ jobs:
dbt deps
dbt seed --target redshift --full-refresh
dbt run --vars '{using_account_history_mode_active_records: true, using_opportunity_history_mode_active_records: true, using_user_role_history_mode_active_records: true, using_user_history_mode_active_records: true, salesforce__user_role_enabled: false}' --target redshift --full-refresh
dbt test --target redshift
dbt test --vars '{salesforce__user_role_enabled: false}' --target redshift
dbt run --target redshift --full-refresh
dbt test --target redshift
- run:
Expand All @@ -70,7 +70,7 @@ jobs:
dbt deps
dbt seed --target snowflake --full-refresh
dbt run --vars '{using_account_history_mode_active_records: true, using_opportunity_history_mode_active_records: true, using_user_role_history_mode_active_records: true, using_user_history_mode_active_records: true, salesforce__user_role_enabled: false}' --target snowflake --full-refresh
dbt test --target snowflake
dbt test --vars '{salesforce__user_role_enabled: false}' --target snowflake
dbt run --target snowflake --full-refresh
dbt test --target snowflake
- run:
Expand All @@ -85,7 +85,7 @@ jobs:
dbt deps
dbt seed --target bigquery --full-refresh
dbt run --vars '{using_account_history_mode_active_records: true, using_opportunity_history_mode_active_records: true, using_user_role_history_mode_active_records: true, using_user_history_mode_active_records: true, salesforce__user_role_enabled: false}' --target bigquery --full-refresh
dbt test --target bigquery
dbt test --vars '{salesforce__user_role_enabled: false}' --target bigquery
dbt run --target bigquery --full-refresh
dbt test --target bigquery
- save_cache:
Expand Down

0 comments on commit bb93364

Please sign in to comment.