Adrien Besnard
06/06/2024, 8:22 AMdbt test
using DbtCoreOperation
but it may fail and I don't want to make the flow fail (because I want to gather the result and make my own Slack message with what as failed). Is there any way to do that?Tomas Moreno
06/06/2024, 5:56 PMdbt test || echo
the ||
ensure the second command only gets run if the first one fails. and echo should always succeed and return a status code of 0 for the whole group, which should pass the dbt core operation. if you know a better way I'd love to learn about it