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 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