Skip to content

Commit

Permalink
test env
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurcerqueiraindicium committed Apr 8, 2024
1 parent 7842e5c commit cc3af97
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Test env
shell: env

- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
Expand Down
8 changes: 4 additions & 4 deletions integration_tests/dbt_project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ models:

seeds:
databricks_billing:
+database: sandbox
+database: "{{ env_var('SNOWFLAKE_TEST_DATABASE') }}"
+tags: integration_tests
+schema: DEV_ARTHUR_CERQUEIRA
+schema: "{{ env_var('SNOWFLAKE_TEST_SCHEMA') }}"

vars:
databricks_billing_database: sandbox
databricks_billing_schema: DEV_ARTHUR_CERQUEIRA
databricks_billing_database: "{{ env_var('SNOWFLAKE_TEST_DATABASE') }}"
databricks_billing_schema: "{{ env_var('SNOWFLAKE_TEST_SCHEMA') }}"

0 comments on commit cc3af97

Please sign in to comment.