I’m trying to create a test tag that would run the following:
- Two source tables from two different folders
- All seeds in a specific folder
- 5 transformation models
I used the following syntax:
For source tables:
sources:
- name: source_name
tables:
- name: hist_table
tags: ["my_tag"]
for seeds in dbt_project.yml
:
seeds:
project_name:
folder_name:
+tags: my_tag
(also tried +tags: "my_tag"
And for models in the yml file:
models:
- name: my_model_1
config:
tags: "my_tag"
The seeds or sources do not show up in the execution list when I use dbt run --select tag:my_tag
. Anything I’m missing?