diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2017-03-19 13:43:19 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-03-19 13:43:19 +0000 |
commit | 875bae259b42bf178101574f3516f87b3708a533 (patch) | |
tree | 5d8f537fed1ca036f5a93f929624f7d28c0ae542 /functest/utils | |
parent | 5b8aa73c0ae774649998c62d9d38d4c7bd09bb84 (diff) | |
parent | f15a4f277fb61b86074e949e2323b8f652969dd1 (diff) |
Merge "Bug Fix: retrieve version from build tag in weekly jobs"
Diffstat (limited to 'functest/utils')
-rw-r--r-- | functest/utils/functest_utils.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/functest/utils/functest_utils.py b/functest/utils/functest_utils.py index e5e755d7..9e13ffe9 100644 --- a/functest/utils/functest_utils.py +++ b/functest/utils/functest_utils.py @@ -111,12 +111,13 @@ def get_version(): # if launched through CI the build tag has the following format # jenkins-<project>-<installer>-<pod>-<job>-<branch>-<id> # e.g. jenkins-functest-fuel-opnfv-jump-2-daily-master-190 + # jenkins-functest-fuel-baremetal-weekly-master-8 # use regex to match branch info - rule = "daily-(.+?)-[0-9]*" + rule = "(dai|week)ly-(.+?)-[0-9]*" build_tag = get_build_tag() m = re.search(rule, build_tag) if m: - return m.group(1) + return m.group(2) else: return "unknown" @@ -156,8 +157,6 @@ def get_db_url(): # if TEST_DB_URL declared in env variable, use it! db_url = os.environ['TEST_DB_URL'] except KeyError: - logger.info("DB URL not declared as env variable," - "use local configuration") db_url = get_functest_config('results.test_db_url') return db_url |