summaryrefslogtreecommitdiffstats
path: root/dovetail/run.py
diff options
context:
space:
mode:
authorxudan <xudan16@huawei.com>2018-01-07 23:09:51 -0500
committerLeo wang <grakiss.wanglei@huawei.com>2018-01-26 07:44:49 +0000
commitc47b8dde0e39e273372b091a3d8da1cc15b7ae9f (patch)
treeb445d4dbcdc975e80c1a82c5798820100d176a8b /dovetail/run.py
parent5091bc68db6f92cf3aa9ddf5e6a63e2bddd3a16f (diff)
Align container tags and test suite configuration yaml for initial release
Change default container tag to be: 1. Functest ovp.1.0.0 2. testapi ovp.1.0.0 Add test suite ovp.1.0.0 and set it to be the default test suite. Comment out bottlenecks CLI for initial release. JIRA: DOVETAIL-580 Change-Id: I956e49e43fc7ba0176c14079b7228089db5dc108 Signed-off-by: xudan <xudan16@huawei.com>
Diffstat (limited to 'dovetail/run.py')
-rwxr-xr-xdovetail/run.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/dovetail/run.py b/dovetail/run.py
index 4778fa51..e5154ad1 100755
--- a/dovetail/run.py
+++ b/dovetail/run.py
@@ -105,7 +105,7 @@ def validate_input(input_dict, check_dict, logger):
# for 'func_tag' and 'yard_tag' options
func_tag = input_dict['func_tag']
yard_tag = input_dict['yard_tag']
- bott_tag = input_dict['bott_tag']
+ # bott_tag = input_dict['bott_tag']
valid_tag = check_dict['valid_docker_tag']
if func_tag is not None and func_tag not in valid_tag:
logger.error("The input option 'func_tag' can't be {}, "
@@ -115,10 +115,10 @@ def validate_input(input_dict, check_dict, logger):
logger.error("The input option 'yard_tag' can't be {}, "
"valid values are {}.".format(yard_tag, valid_tag))
raise SystemExit(1)
- if bott_tag is not None and bott_tag not in valid_tag:
- logger.error("The input option 'bott_tag' can't be {}, "
- "valid values are {}.".format(bott_tag, valid_tag))
- raise SystemExit(1)
+ # if bott_tag is not None and bott_tag not in valid_tag:
+ # logger.error("The input option 'bott_tag' can't be {}, "
+ # "valid values are {}.".format(bott_tag, valid_tag))
+ # raise SystemExit(1)
# for 'report' option
report = input_dict['report']