diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index 9ad08cd..a8a1ef5 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -35,4 +35,13 @@ jobs: dbt deps - name: Integration Test - Snowflake - run: cd integration_tests && dbt build --target snowflake + run: | + cd integration_tests + dbt build --target snowflake --vars " + databricks_billing_database: $SNOWFLAKE_TEST_DATABASE + databricks_billing_schema: $SNOWFLAKE_TEST_SCHEMA + seeds: + databricks_billing: + +database: $SNOWFLAKE_TEST_DATABASE + +schema: $SNOWFLAKE_TEST_SCHEMA + " diff --git a/integration_tests/dbt_project.yml b/integration_tests/dbt_project.yml index e3604db..75ea978 100644 --- a/integration_tests/dbt_project.yml +++ b/integration_tests/dbt_project.yml @@ -25,10 +25,8 @@ models: seeds: databricks_billing: - +database: "{{ env_var('SNOWFLAKE_TEST_DATABASE') }}" +tags: integration_tests - +schema: "{{ env_var('SNOWFLAKE_TEST_SCHEMA') }}" vars: - databricks_billing_database: "{{ env_var('SNOWFLAKE_TEST_DATABASE') }}" - databricks_billing_schema: "{{ env_var('SNOWFLAKE_TEST_SCHEMA') }}" \ No newline at end of file + databricks_billing_database: + databricks_billing_schema: \ No newline at end of file