From c8106bf59d25473931a5f759d4c65608c276d07d Mon Sep 17 00:00:00 2001 From: Benoit Perigaud <8754100+b-per@users.noreply.github.com> Date: Thu, 22 Feb 2024 08:59:10 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Fix=20indentation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/ci-check.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/ci-check.md b/docs/ci-check.md index 2169bd4f..64e37cc2 100644 --- a/docs/ci-check.md +++ b/docs/ci-check.md @@ -15,7 +15,7 @@ By default the tests in this package are configured with "warn" severity, we can ```yaml title="dbt_project.yml" tests: - dbt_project_evaluator: + dbt_project_evaluator: +severity: "{{ env_var('DBT_PROJECT_EVALUATOR_SEVERITY', 'warn') }}" ``` @@ -25,7 +25,7 @@ By default the tests in this package are configured with "warn" severity, we can ```yaml title="dbt_project.yml" models: - dbt_project_evaluator: + dbt_project_evaluator: +enabled: "{{ env_var('ENABLE_DBT_PROJECT_EVALUATOR', 'true') | lower == 'true' | as_bool }}" ```