diff options
-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 3ca2847b..d2e09eb8 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} |