diff options
author | liyin <liyin11@huawei.com> | 2017-07-17 17:45:38 +0800 |
---|---|---|
committer | liyin <liyin11@huawei.com> | 2017-07-17 17:45:38 +0800 |
commit | 75f99aaeadada56dfc974746cd83fec275133a3c (patch) | |
tree | f916a3b19140a0e938205a94197e20c151df0113 /testsuites/run_testsuite.py | |
parent | b26f701ab2327497b0e44f548ea18e24b1e6b0d9 (diff) |
Bug fix of Bottlenecks can't use CLI
JIRA: BOTTLENECK-171
Bug fix of Bottlenecks can't use CLI to start test.
Some docker-compose function delete to fit elk docker support.
After this patch you could use bottlenecks testcase run
posca_factor_ping to start this test.
you also need to put the rc file to bottlenecks docker.
Change-Id: I340e31185a499c81f9595a902df89d8f0ddf0cd3
Signed-off-by: liyin <liyin11@huawei.com>
Diffstat (limited to 'testsuites/run_testsuite.py')
-rw-r--r-- | testsuites/run_testsuite.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/testsuites/run_testsuite.py b/testsuites/run_testsuite.py index 7ec67eff..1e8d8953 100644 --- a/testsuites/run_testsuite.py +++ b/testsuites/run_testsuite.py @@ -77,6 +77,7 @@ def report(testcase, start_date, stop_date, criteria, details_doc): def docker_env_prepare(config): + LOG.info("Begin to prepare docker environment") if 'contexts' in config.keys() and config["contexts"] is not None: context_config = config["contexts"] if 'yardstick' in context_config.keys() and \ @@ -89,6 +90,7 @@ def docker_env_prepare(config): conf_parser.Parser.convert_docker_env(config, "dashboard") LOG.debug('Waiting for ELK init') time.sleep(15) + LOG.info("Docker environment have prepared") return |