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
taylor
03/30/2023, 2:21 PM
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