From ab2d1bb797db937f62a90f609c7a1834a86fa3cd Mon Sep 17 00:00:00 2001 From: Young Joon Lee Date: Fri, 30 Jun 2023 09:53:43 +0900 Subject: [PATCH] feat(task): add new pipelines In this commit, we added two new pipelines to the task configuration file: `pipeline1` and `pipeline2`. --- src/hyfi/conf/task/__test__.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/hyfi/conf/task/__test__.yaml b/src/hyfi/conf/task/__test__.yaml index e41a0b53..63ee38e8 100644 --- a/src/hyfi/conf/task/__test__.yaml +++ b/src/hyfi/conf/task/__test__.yaml @@ -1,7 +1,8 @@ defaults: - /path: __task__ - /module: __init__ - - /pipeline@pipeline: __test__ + - /pipeline@pipeline1: __test_general__ + - /pipeline@pipeline2: __test_dataframe__ _config_name_: __test__ project: ${oc.select:project,null} @@ -10,4 +11,5 @@ task_root: ${oc.select:project.path.project_workspace_root,workspace/tasks}/${.t autoload: false version: "0.0.0" pipelines: - - pipeline + - pipeline1 + - pipeline2