summaryrefslogtreecommitdiffstats
path: root/testsuites
diff options
context:
space:
mode:
authorYu Yang (Gabriel) <Gabriel.yuyang@huawei.com>2017-08-03 04:01:50 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-08-03 04:01:50 +0000
commit3592f9016821a603930ebda7f4112abf732e6750 (patch)
treecdd5684ddc2bf37da212eae0e73e531a6732e6c5 /testsuites
parent5b75906f3bcf91355bed14311d79d49d65982b6d (diff)
parentb20de06b02a6eec449e5ac1e99226f35728b248d (diff)
Merge "Change path to reporting db"
Diffstat (limited to 'testsuites')
-rw-r--r--testsuites/run_testsuite.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/testsuites/run_testsuite.py b/testsuites/run_testsuite.py
index bc255c46..8c8f6996 100644
--- a/testsuites/run_testsuite.py
+++ b/testsuites/run_testsuite.py
@@ -60,12 +60,11 @@ def report(testcase, start_date, stop_date, criteria, details_doc):
"scenario": os.environ.get('DEPLOY_SCENARIO', 'unknown')
}
results['details'] = {"test_results": details_doc}
-
target = os.environ.get(
- 'REPORTING_DB',
+ 'BOTTLENECKS_DB_TARGET',
'http://testresults.opnfv.org/test/api/v1/results')
+ print ('Address of the target DB is: %s.' % target)
timeout = 5
-
try:
LOG.debug('Test result : %s', jsonutils.dump_as_bytes(results))
res = requests.post(target,
@@ -113,6 +112,7 @@ def testsuite_run(test_level, test_name, REPORT="False"):
LOG.info("End of %s testcase in POSCA testsuite", testcase)
criteria = "FAIL"
if REPORT == "True":
+ print ('Testing results are about to be sent to the target DB.')
details_doc = []
if os.path.exists(config[testcase]['out_file']):
with open(config[testcase]['out_file']) as details_result:
@@ -120,6 +120,8 @@ def testsuite_run(test_level, test_name, REPORT="False"):
if len(details_doc):
criteria = "PASS"
report(testcase, start_date, stop_date, criteria, details_doc)
+ else:
+ print ('Testing results have not been sent to the target DB.')
def main():