Skip to content
This repository has been archived by the owner on Dec 4, 2024. It is now read-only.

Commit

Permalink
Merge pull request #58 from fishtown-analytics/bump-utils-0.5.0
Browse files Browse the repository at this point in the history
Bump utils 0.5.0
  • Loading branch information
Claire Carroll authored Jul 31, 2020
2 parents 70ac266 + 9b8c790 commit 54ae627
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
24 changes: 12 additions & 12 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,21 +36,21 @@ jobs:
. venv/bin/activate
echo `pwd`
cd integration_tests
dbt deps
dbt seed --target redshift
dbt run --target redshift --full-refresh
dbt run --target redshift
dbt --warn-error deps
dbt --warn-error seed --target redshift
dbt --warn-error run --target redshift --full-refresh
dbt --warn-error run --target redshift
- run:
name: "Run Tests - Snowflake"
command: |
. venv/bin/activate
echo `pwd`
cd integration_tests
dbt deps
dbt seed --target snowflake
dbt run --target snowflake --full-refresh
dbt run --target snowflake
dbt --warn-error deps
dbt --warn-error seed --target snowflake
dbt --warn-error run --target snowflake --full-refresh
dbt --warn-error run --target snowflake
- run:
name: "Run Tests - BigQuery"
Expand All @@ -61,10 +61,10 @@ jobs:
. venv/bin/activate
echo `pwd`
cd integration_tests
dbt deps
dbt seed --target bigquery
dbt run --target bigquery --full-refresh
dbt run --target bigquery
dbt --warn-error deps
dbt --warn-error seed --target bigquery
dbt --warn-error run --target bigquery --full-refresh
dbt --warn-error run --target bigquery
- save_cache:
key: deps1-{{ .Branch }}
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/ci/sample.profiles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ integration_tests:
user: "{{ env_var('REDSHIFT_TEST_USER') }}"
pass: "{{ env_var('REDSHIFT_TEST_PASS') }}"
dbname: "{{ env_var('REDSHIFT_TEST_DBNAME') }}"
port: "{{ env_var('REDSHIFT_TEST_PORT') }}"
port: "{{ env_var('REDSHIFT_TEST_PORT') | as_number }}"
schema: segment_integration_tests_redshift
threads: 1

Expand Down
2 changes: 1 addition & 1 deletion packages.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
packages:
- package: fishtown-analytics/dbt_utils
version: [">=0.3.0", "<0.5.0"]
version: [">=0.4.0", "<0.6.0"]

0 comments on commit 54ae627

Please sign in to comment.