You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This does not throw an error when parsing the project.
However, the tag is not recognised either. When I try to use it in a --select statement:
dbt list --select tag:some_model_tests
I get nothing.
Where would I like to use these tags?
There's a set of tests that I want to include in the build step of my pipeline, but there's also a set of tests I want to include only in a dedicated data quality monitoring pipeline. Instead of listing them one by one and keeping the lists unified in both places, I'd like to tag the tests. This way I could simplify my select statements to:
With dbt column level tests it is possible to tag the test, for example:
And then it's possible to make use of those tags in
--select
statements, for example:will return
I've tried to add a tag to the configuration of a dbt_expectations test, for example:
This does not throw an error when parsing the project.
However, the tag is not recognised either. When I try to use it in a
--select
statement:I get nothing.
Where would I like to use these tags?
There's a set of tests that I want to include in the build step of my pipeline, but there's also a set of tests I want to include only in a dedicated data quality monitoring pipeline. Instead of listing them one by one and keeping the lists unified in both places, I'd like to tag the tests. This way I could simplify my select statements to:
and
The text was updated successfully, but these errors were encountered: