From 5ef4a80c69b2242f1a6e9c466478f0e1953bbfed Mon Sep 17 00:00:00 2001 From: tangwei Date: Wed, 10 Jun 2020 14:21:16 +0800 Subject: [PATCH] add multi phase and multi runner --- run.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/run.py b/run.py index 8be9cfeb..b9256c26 100755 --- a/run.py +++ b/run.py @@ -102,6 +102,9 @@ def get_modes(running_config): if not modes: raise ValueError("yaml mast have config: mode") + if isinstance(modes, str): + modes = [modes] + return modes -- GitLab