Skip to content

Commit

Permalink
re-enable redshift
Browse files Browse the repository at this point in the history
  • Loading branch information
joellabes committed May 14, 2024
1 parent 683c882 commit 93e2b25
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
22 changes: 11 additions & 11 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,17 +55,17 @@ jobs:
# dbt run --target postgres
# dbt test --target postgres

# - run:
# name: "Run Tests - Redshift"
# command: |
# . dbt_venv/bin/activate
# echo `pwd`
# cd integration_tests
# dbt deps --target redshift
# dbt seed --target redshift --full-refresh
# dbt compile --target redshift
# dbt run --target redshift
# dbt test --target redshift
- run:
name: "Run Tests - Redshift"
command: |
. dbt_venv/bin/activate
echo `pwd`
cd integration_tests
dbt deps --target redshift
dbt seed --target redshift --full-refresh
dbt compile --target redshift
dbt run --target redshift
dbt test --target redshift
- run:
name: "Run Tests - Snowflake"
Expand Down
6 changes: 3 additions & 3 deletions integration_tests/ci/sample.profiles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ integration_tests:
dbname: "{{ env_var('REDSHIFT_TEST_DBNAME') }}"
port: "{{ env_var('REDSHIFT_TEST_PORT') | as_number }}"
schema: audit_helper_integration_tests_redshift
threads: 1
threads: 8

bigquery:
type: bigquery
method: service-account
keyfile: "{{ env_var('BIGQUERY_SERVICE_KEY_PATH') }}"
project: "{{ env_var('BIGQUERY_TEST_DATABASE') }}"
schema: audit_helper_integration_tests_bigquery
threads: 1
threads: 8

snowflake:
type: snowflake
Expand All @@ -46,4 +46,4 @@ integration_tests:
database: "{{ env_var('SNOWFLAKE_TEST_DATABASE') }}"
warehouse: "{{ env_var('SNOWFLAKE_TEST_WAREHOUSE') }}"
schema: audit_helper_integration_tests_snowflake
threads: 1
threads: 8

0 comments on commit 93e2b25

Please sign in to comment.