From 553bb9b296259df1137ff0b9db07f9285e171d38 Mon Sep 17 00:00:00 2001 From: Benoit Perigaud <8754100+b-per@users.noreply.github.com> Date: Fri, 7 Jun 2024 16:49:34 +0200 Subject: [PATCH 1/2] Update env var in docs to start with DBT_ --- docs/ci-check.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ci-check.md b/docs/ci-check.md index 64e37cc2..493e0453 100644 --- a/docs/ci-check.md +++ b/docs/ci-check.md @@ -26,7 +26,7 @@ By default the tests in this package are configured with "warn" severity, we can ```yaml title="dbt_project.yml" models: dbt_project_evaluator: - +enabled: "{{ env_var('ENABLE_DBT_PROJECT_EVALUATOR', 'true') | lower == 'true' | as_bool }}" + +enabled: "{{ env_var('DBT_PROJECT_EVALUATOR_ENABLED', 'true') | lower == 'true' | as_bool }}" ``` ## 2. Run this package for each pull request From b5e8ff4048ac7465ff186d387fdabc1347e02a3d Mon Sep 17 00:00:00 2001 From: Benoit Perigaud <8754100+b-per@users.noreply.github.com> Date: Fri, 21 Jun 2024 19:09:55 +0200 Subject: [PATCH 2/2] Un --pre for all adapters --- run_test.sh | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/run_test.sh b/run_test.sh index 49e399dc..07b39521 100755 --- a/run_test.sh +++ b/run_test.sh @@ -6,14 +6,8 @@ then python3 -m venv venv . $VENV - pip install --upgrade pip setuptools - - if [[ $1 == "duckdb" ]] - then - pip install "dbt-$1==1.7.1" - else - pip install --pre "dbt-$1" dbt-core - fi + pip install --upgrade pip setuptools "dbt-$1" dbt-core + fi . $VENV