I have a project in which we’re trying to deprecate a few directories. To do this, we’ve gone through and tagged models in one directory with “tagname_a”. In another directory we tagged models with “tagname_b”.
If I run dbt run --exclude tag:tagname_a
, I can see that those models do not run.
If I run dbt run --exclude tag:tagname_b
, I can see that those models do not run.
However, if I run dbt run --exclude tag:tagname_a,tag:tagname_b
, all of the models run and nothing gets excluded.
What is the proper syntax to run dbt and exclude multiple tags?
We’re on dbt version 1.3. Any help would be appreciated. Thank you.