-
Notifications
You must be signed in to change notification settings - Fork 500
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
92 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
|
||
# HEY! This file is used in the dbt-utils integrations tests with CircleCI. | ||
# You should __NEVER__ check credentials into version control. That's why we use environment variables everywhere. | ||
# Thanks for reading :) | ||
|
||
config: | ||
send_anonymous_usage_stats: False | ||
use_colors: True | ||
|
||
integration_tests: | ||
target: postgres | ||
outputs: | ||
postgres: | ||
type: postgres | ||
host: "{{ env_var('POSTGRES_TEST_HOST') }}" | ||
user: "{{ env_var('POSTGRES_TEST_USER') }}" | ||
pass: "{{ env_var('DBT_ENV_SECRET_POSTGRES_TEST_PASS') }}" | ||
port: "{{ env_var('POSTGRES_TEST_PORT') | as_number }}" | ||
dbname: "{{ env_var('POSTGRES_TEST_DBNAME') }}" | ||
schema: "{{ env_var('POSTGRES_TEST_SCHEMA') }}" | ||
threads: 5 | ||
|
||
redshift: | ||
type: redshift | ||
host: "{{ env_var('REDSHIFT_TEST_HOST') }}" | ||
user: "{{ env_var('REDSHIFT_TEST_USER') }}" | ||
pass: "{{ env_var('DBT_ENV_SECRET_REDSHIFT_TEST_PASS') }}" | ||
dbname: "{{ env_var('REDSHIFT_TEST_DBNAME') }}" | ||
port: "{{ env_var('REDSHIFT_TEST_PORT') | as_number }}" | ||
schema: "{{ env_var('REDSHIFT_TEST_SCHEMA') }}" | ||
threads: 5 | ||
|
||
bigquery: | ||
type: bigquery | ||
method: service-account | ||
keyfile: "{{ env_var('DBT_ENV_SECRET_BIGQUERY_SERVICE_KEY_PATH') }}" | ||
project: "{{ env_var('BIGQUERY_TEST_DATABASE') }}" | ||
schema: "{{ env_var('BIGQUERY_TEST_SCHEMA') }}" | ||
threads: 10 | ||
|
||
snowflake: | ||
type: snowflake | ||
account: "{{ env_var('SNOWFLAKE_TEST_ACCOUNT') }}" | ||
user: "{{ env_var('SNOWFLAKE_TEST_USER') }}" | ||
password: "{{ env_var('DBT_ENV_SECRET_SNOWFLAKE_TEST_PASS') }}" | ||
role: "{{ env_var('SNOWFLAKE_TEST_ROLE') }}" | ||
database: "{{ env_var('SNOWFLAKE_TEST_DATABASE') }}" | ||
warehouse: "{{ env_var('SNOWFLAKE_TEST_WAREHOUSE') }}" | ||
schema: "{{ env_var('SNOWFLAKE_TEST_SCHEMA') }}" | ||
threads: 10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters