diff options
author | hongbo tian <hongbo.tianhongbo@huawei.com> | 2016-11-16 08:00:54 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2016-11-16 08:00:54 +0000 |
commit | 8a6bc92ff3b906a72194c7fa5db61ebb030052a4 (patch) | |
tree | e7449564344d0be36693b69e803d4759bfd81e62 | |
parent | 318adb088c45d2aa086184cca6a3f5425c4a8d60 (diff) | |
parent | d38cc2e9ada03a2c257bf74a751070eb47036b64 (diff) |
Merge "Fix option handling in case of no '--tag' option."
-rwxr-xr-x | dovetail/run.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dovetail/run.py b/dovetail/run.py index b4b9dda4..0ebae734 100755 --- a/dovetail/run.py +++ b/dovetail/run.py @@ -87,7 +87,7 @@ def run_test(scenario): def validate_options(input_dict): # for 'tag' option for key, value in input_dict.items(): - if key == 'tag': + if key == 'tag' and value is not None: for tag in value.split(','): if len(tag.split(':')) != 2: logger.error('TAGS option must be "<image>:<tag>,..."') @@ -117,7 +117,7 @@ def main(*args, **kwargs): dovetail_config['yardstick']['envs']) load_testcase() scenario_yaml = load_scenario(kwargs['scenario']) - if 'tag' in kwargs: + if 'tag' in kwargs and kwargs['tag'] is not None: set_container_tags(kwargs['tag']) run_test(scenario_yaml) Report.generate(scenario_yaml) |