summaryrefslogtreecommitdiffstats
path: root/testsuites
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites')
-rw-r--r--testsuites/posca/testcase_script/posca_factor_ping.py2
-rw-r--r--testsuites/run_testsuite.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/testsuites/posca/testcase_script/posca_factor_ping.py b/testsuites/posca/testcase_script/posca_factor_ping.py
index 5f56cdae..e46a919f 100644
--- a/testsuites/posca/testcase_script/posca_factor_ping.py
+++ b/testsuites/posca/testcase_script/posca_factor_ping.py
@@ -67,8 +67,8 @@ def do_test(test_config, con_dic):
loop_walue = 0
while loop_walue < 150:
time.sleep(2)
+ loop_walue = loop_walue + 1
with open(out_file) as f:
- loop_walue = loop_walue + 1
data = json.load(f)
if data["status"] == 1:
if data["result"]["criteria"] == "PASS":
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