Skip to content

Commit

Permalink
Merge pull request #430 from dbt-labs/minor-docs-updates
Browse files Browse the repository at this point in the history
  • Loading branch information
b-per authored Feb 23, 2024
2 parents eb32a30 + c8106bf commit 20aafc5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/ci-check.md
Original file line number Diff line number Diff line change
Expand Up @@ -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') }}"
```
Expand All @@ -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 }}"
```
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ This package will:
2. Create another series of models that each represent one type of misalignment in your project (below you can find a full list of each misalignment and its accompanying model)
3. Test those models to alert you to the presence of the misalignment
Once you've installed the package, all you have to do is run a `dbt build --select package:dbt_project_evaluator`!
Once you've installed the package, all you have to do is run a `dbt build --select package:dbt_project_evaluator`

Each test warning indicates the presence of a type of misalignment. To troubleshoot a misalignment:

Expand Down
2 changes: 0 additions & 2 deletions docs/rules/modeling.md
Original file line number Diff line number Diff line change
Expand Up @@ -418,8 +418,6 @@ to the unused source. Within the YML file, remove the unused table name, along w
or any other nested information.

```yaml title="sources.yml"
version: 2
sources:
- name: some_source
database: raw
Expand Down

0 comments on commit 20aafc5

Please sign in to comment.