Lets say I have a kedro project that contains two ...
# questions
m
Lets say I have a kedro project that contains two subpipelines with identical outputs. I would like some way to choose which sub pipeline to run. I thought I could do this using tags (e.g.
kedro run -t prepA
) but kedro complains that the outputs from the two subpipelines are the same. I was hoping it wouldn't do this check if I used
kedro run
with the tags argument but I look to be mistaken. How can I let the user pick between one subpipeline or the other when running a kedro project?
Slightly cleaned up diagram
From
find_pipelines
is there a way to retrieve the tags affiliated with a subpipeline?