We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd570d9 commit b4d19a0Copy full SHA for b4d19a0
README.md
@@ -50,6 +50,20 @@ The purpose of the dq tool is to make simple storing test results and visualisat
50
dbt run -s dq_tools
51
```
52
53
+ - Then, decide to save the test result in dbt command:
54
+
55
+ ```bash
56
+ dbt test --vars '{dq_tools_enable_store_test_results: True}'
57
+ dbt build --vars '{dq_tools_enable_store_test_results: True}'
58
+ ```
59
60
+ Alternatively, we can also enable this variable in <code>dbt_project.yml`</code>:
61
+ ```yml
62
+ vars:
63
+ # to store the test results in db table
64
+ dq_tools_enable_store_test_results: True
65
66
67
See [Installation Instructions](#installation-instructions) in more details.
68
69
## 3 Functional layers
0 commit comments