How do I run tests on just my sources?
To run tests on all sources, use the following command:
dbt test --select "source:*"
(You can also use the -s
shorthand here instead of --select
)
To run tests on one source (and all of its tables):
$ dbt test --select source:jaffle_shop
And, to run tests on one source table only:
$ dbt test --select source:jaffle_shop.orders
0