diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2016-08-30 09:06:00 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-08-30 09:06:00 +0000 |
commit | 1f388ff6f5c28252ef99a631b7b290f60a6a9291 (patch) | |
tree | d521b36e153b6a0a20a8dcb60c5e4297137ec8b9 | |
parent | a4be75300a5f10e2e7b33f34442459ed0b2c7060 (diff) | |
parent | fee070fcc4a31735abb88b303742bb05f12b53e7 (diff) |
Merge "Stop hard-coding db url"
-rwxr-xr-x | ci/generate_report.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ci/generate_report.py b/ci/generate_report.py index 3ca2847bd..d2e09eb80 100755 --- a/ci/generate_report.py +++ b/ci/generate_report.py @@ -3,6 +3,7 @@ import os import re import urllib2 import functest.utils.functest_logger as ft_logger +import functest.utils.functest_utils as ft_utils COL_1_LEN = 25 @@ -32,8 +33,7 @@ def init(tiers_to_run): def get_results_from_db(): - url = 'http://testresults.opnfv.org/test/api/v1/results?build_tag=' + \ - BUILD_TAG + url = ft_utils.get_db_url() + '/results?build_tag=' + BUILD_TAG logger.debug("Query to rest api: %s" % url) try: data = json.load(urllib2.urlopen(url)) @@ -49,7 +49,7 @@ def get_data(test, results): for test_db in results: if test['test_name'] in test_db['case_name']: id = test_db['_id'] - url = 'http://testresults.opnfv.org/test/api/v1/results/' + id + url = ft_utils.get_db_url() + '/results/' + id test_result = test_db['criteria'] return {"url": url, "result": test_result} |