1. dbt Labs Documentation
dbt test command: "dbt test will run tests on your data. dbt ships with four generic tests out of the box: unique
notnull
acceptedvalues and relationships... You can also write your own
custom data tests to test any assertion about your data that you can write in SQL." (Reference: dbt test command page).
2. dbt Labs Documentation
About dbt commands: This page provides a high-level overview of the different commands and their purposes
clearly distinguishing test from run
compile
and seed. (Reference: About dbt commands page).
3. dbt Labs Documentation
dbt compile command: "The dbt compile command generates executable sql from your project's model
test
and analysis files." (Reference: dbt compile command page).
4. dbt Labs Documentation
dbt seed command: "The dbt seed command loads data from csv files into your data warehouse. These csv files are located in the seed-paths directory of your dbt project (dbtproject.yml)." (Reference: dbt seed command page).