More of a dbt question, but… I’d like to run all o...
# troubleshooting
d
More of a dbt question, but… I’d like to run all of my models first, then run my tests. I have snapshots that depend on models and vice-versa, so I need to run all my models in DAG order, but the tests can come at the end. Anyone know how to do that?
t
to do it with Meltano you would specify what you want to run as individual commands. then you could run them however you want using
meltano run
. so you could do:
meltano run dbt:my_model dbt:my_tests dbt:my_snapshots
where
my_model
is a dbt command like
run --select +my_models
. does that make sense?