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
dbt init sets up the dbt_project.yml with some default paths.
I wanted to cleanup my dbt_project.yml by removing these assuming I used the default values and folder names.
Turns out the default value for test-paths is test-paths: ["test"].
Where as the default that dbt init creates is test-paths: ["tests"].
Describe the bug
dbt init
sets up thedbt_project.yml
with some default paths.I wanted to cleanup my
dbt_project.yml
by removing these assuming I used the default values and folder names.Turns out the default value for
test-paths
istest-paths: ["test"]
.Where as the default that
dbt init
creates istest-paths: ["tests"]
.This seems inconsistent.
https://docs.getdbt.com/reference/project-configs/test-paths
Could the default value be:
A) Changed to look for "tests" so it matches
dbt init
ORB) Change the default value to look for both "test" and "tests".
It is nice that
dbt init
makes these visible initially to let me know what is available.However if I don't change these from the defaults I would like to declutter my
dbt_project.yml
and remove them and have consistent behaviour.I haven't double checked seeds, snapshots, etc.
The text was updated successfully, but these errors were encountered: