dbt - Production Deployment
You have this Airflow DAG snippet:
Why does the
dbt_run = BashOperator(task_id='dbt_run', bash_command='dbt run') dbt_test = BashOperator(task_id='dbt_test', bash_command='dbt test') dbt_test.set_downstream(dbt_run)
Why does the
dbt_run task never execute?