You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+20-2Lines changed: 20 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ Once you've installed the package, all you have to do is run a `dbt build --sele
47
47
48
48
Each test warning indicates the presence of a type of misalignment. To troubleshoot a misalignment:
49
49
1. Locate the related documentation below
50
-
2. Query the associated model to find the specific instances of the issue within your project
50
+
2. Query the associated model to find the specific instances of the issue within your project or set up an [`on-run-end` hook](https://docs.getdbt.com/reference/project-configs/on-run-start-on-run-end) to display the rules violations in the dbt logs (see [displaying violations in the logs](#displaying-violations-in-the-logs))
51
51
3. Either fix the issue(s) or [customize](#customization) the package to exclude them
52
52
53
53
----
@@ -1123,10 +1123,28 @@ seeds:
1123
1123
#### 3. Run the seed and the package
1124
1124
1125
1125
We then run both the seed and the package by executing the following command:
This package provides a macro that can be executed via an `on-run-end` hook to display the package results in the logs in addition to storing those in the Data Warehouse.
1134
+
1135
+
To use it, you can add the following line in your `dbt_project.yml`:
In the case that you are storing the tables with the package results in a schema or database different from the default ones from your profile, the following parameters are available for `print_dbt_project_evaluator_issues()`:
1142
+
1143
+
- `schema_project_evaluator`: the schema where the tables are stored
1144
+
- `db_project_evaluator`: the database where the tables are stored
0 commit comments