minmin
03/27/2025, 11:07 AMkedro 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.datajoely
03/27/2025, 11:08 AMdatajoely
03/27/2025, 11:08 AMPipeline
objects can be treated like `set`s and I think tags are an argument there toominmin
03/27/2025, 11:17 AM