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
After installing the package and following the docs here to disable test materializations.
When running dbt build --select package:dbt_project_evaluator, I noticed that the number of nodes dropped from 78 to 71, but still included quite a few tests.
After updating my config to this, the number of nodes dropped to 49, and no longer included tests. In other words, I updated the tests path rather than the models path.
tests:
dbt_project_evaluator:
+enabled: false # disable test coverage suite
Happy to contribute this doc update if helpful (and assuming I'm not overlooking something silly).
Steps to reproduce
Update dbt_project.yml with this:
models:
dbt_project_evaluator:
marts:
tests:
# disable entire test coverage suite
+enabled: false
Run dbt build --select package:dbt_project_evaluator
Expected results
dbt builds all models, but does not run any tests.
Core:
- installed: 1.8.3
- latest: 1.8.6 - Update available!
Your version of dbt-core is out of date!
You can find instructions for upgrading here:
https://docs.getdbt.com/docs/installation
Plugins:
- snowflake: 1.8.3 - Up to date!
Additional context
Are you interested in contributing the fix?
The text was updated successfully, but these errors were encountered:
Describe the bug
After installing the package and following the docs here to disable test materializations.
When running
dbt build --select package:dbt_project_evaluator
, I noticed that the number of nodes dropped from 78 to 71, but still included quite a few tests.After updating my config to this, the number of nodes dropped to 49, and no longer included tests. In other words, I updated the
tests
path rather than themodels
path.Happy to contribute this doc update if helpful (and assuming I'm not overlooking something silly).
Steps to reproduce
dbt_project.yml
with this:dbt build --select package:dbt_project_evaluator
Expected results
dbt builds all models, but does not run any tests.
Actual results
build builds all models, and a subset of tests.
Screenshots and log output
System information
The contents of your
packages.yml
file:Which database are you using dbt with?
The output of
dbt --version
:Additional context
Are you interested in contributing the fix?
The text was updated successfully, but these errors were encountered: