Hi kedro team, is there a way of specify tags usin...
# questions
m
Hi kedro team, is there a way of specify tags using AND? e.g.
kedro run --tags="tag1" and "tag2" #(only run if the node has both tag1 and tag2)
as far as I can tell doing:
kedro run --tags=tag1,tag2
is akin to saying "run all nodes that have tag1 OR tag2. this is useful if you put all the parts of a pipelines namespace in the pipeline-level tags, then tag a single node in the pipleline. So you can then run one node for just one namespace.
d
so you can do this in the pipeline registry
Pipeline
objects can be treated like `set`s and I think tags are an argument there too
m
thanks for the quick reply @datajoely. I will give it a go and post back any solution I manage back here.
👍 1