Skip to content

Commit 6ef7a69

Browse files
authored
Merge pull request #461 from dbt-labs/docs/env-var-ci
2 parents 7abff20 + b5e8ff4 commit 6ef7a69

2 files changed

Lines changed: 3 additions & 9 deletions

File tree

docs/ci-check.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ By default the tests in this package are configured with "warn" severity, we can
2626
```yaml title="dbt_project.yml"
2727
models:
2828
dbt_project_evaluator:
29-
+enabled: "{{ env_var('ENABLE_DBT_PROJECT_EVALUATOR', 'true') | lower == 'true' | as_bool }}"
29+
+enabled: "{{ env_var('DBT_PROJECT_EVALUATOR_ENABLED', 'true') | lower == 'true' | as_bool }}"
3030
```
3131
3232
## 2. Run this package for each pull request

run_test.sh

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,8 @@ then
66
python3 -m venv venv
77
. $VENV
88

9-
pip install --upgrade pip setuptools
10-
11-
if [[ $1 == "duckdb" ]]
12-
then
13-
pip install "dbt-$1==1.7.1"
14-
else
15-
pip install --pre "dbt-$1" dbt-core
16-
fi
9+
pip install --upgrade pip setuptools "dbt-$1" dbt-core
10+
1711
fi
1812

1913
. $VENV

0 commit comments

Comments
 (0)