diff --git a/.github/workflows/ci_lint_package.yml b/.github/workflows/ci_lint_package.yml index b7d43a01..111f6357 100644 --- a/.github/workflows/ci_lint_package.yml +++ b/.github/workflows/ci_lint_package.yml @@ -44,7 +44,7 @@ jobs: ref: ${{ github.event.pull_request.head.sha }} # Check out the code of the PR - name: Install Python packages - run: python -m pip install dbt-snowflake~=1.6.0 sqlfluff-templater-dbt + run: python -m pip install dbt-snowflake~=1.6.0 sqlfluff-templater-dbt~=2.0.2 - name: Test database connection run: dbt debug diff --git a/tox.ini b/tox.ini index 064d234f..2070a7eb 100644 --- a/tox.ini +++ b/tox.ini @@ -151,10 +151,18 @@ commands = dbt deps dbt build --target snowflake +[testenv:integration_snowflake_1_6_0] +changedir = integration_test_project +deps = dbt-snowflake~=1.6.0 +commands = + dbt clean + dbt deps + dbt build --target snowflake + # Databricks integration tests [testenv:integration_databricks] changedir = integration_test_project -deps = dbt-databricks~=1.4.0 +deps = dbt-databricks~=1.6.0 commands = dbt clean dbt deps @@ -184,10 +192,18 @@ commands = dbt deps dbt build --target databricks +[testenv:integration_databricks_1_6_0] +changedir = integration_test_project +deps = dbt-databricks~=1.6.0 +commands = + dbt clean + dbt deps + dbt build --target databricks + # Bigquery integration tests [testenv:integration_bigquery] changedir = integration_test_project -deps = dbt-bigquery~=1.4.0 +deps = dbt-bigquery~=1.6.0 commands = dbt clean dbt deps @@ -217,6 +233,14 @@ commands = dbt deps dbt build --target bigquery --vars '"my_var": "my value"' +[testenv:integration_bigquery_1_6_0] +changedir = integration_test_project +deps = dbt-bigquery~=1.6.0 +commands = + dbt clean + dbt deps + dbt build --target bigquery --vars '"my_var": "my value"' + # Spark integration test (disabled) [testenv:integration_spark] changedir = integration_test_project