Artur Dobrogowski
05/24/2024, 6:55 PMKedroSession
to run kedro as part of a test.
I have some dilema - whether I should define this test pipeline variant in a proper way and make it clutter pipelines listing and risk some accidental executions of it or to define and parametrise its version in tests and try to register it manually so I can call it using kedro session,Artur Dobrogowski
05/24/2024, 8:36 PMfrom kedro.framework.project import pipelines
pipelines["test_pipeline"] = model_pipeline
ret_value = session.run(pipeline_name="test_pipeline")