aboutsummaryrefslogtreecommitdiffstats
path: root/functest/utils
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2018-09-14 07:11:13 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2018-09-14 07:12:21 +0200
commitf79e842601dc2fa909372d2f4e2274e52985b87e (patch)
tree46a1bd9a1edfc6692b30455faec0f8b6083089fc /functest/utils
parentcfc36026a5b08ff113cfe8cc08dde7fd197410a7 (diff)
Update get_openstack_version()
It takes Rocky maximum version into account. Change-Id: I55469de4a63f1f824222660130a20d7fd8fa42c3 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com> (cherry picked from commit 2098c49184b1c97b89b4d88dffa2e2a9b3571f04)
Diffstat (limited to 'functest/utils')
-rw-r--r--functest/utils/functest_utils.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/functest/utils/functest_utils.py b/functest/utils/functest_utils.py
index 1993f1e83..dd2bf1932 100644
--- a/functest/utils/functest_utils.py
+++ b/functest/utils/functest_utils.py
@@ -109,8 +109,10 @@ def get_openstack_version(cloud):
version = get_nova_version(cloud)
try:
assert version
- if version > (2, 60):
- osversion = "Rocky or newer"
+ if version > (2, 65):
+ osversion = "Master"
+ elif version > (2, 60):
+ osversion = "Rocky"
elif version > (2, 53):
osversion = "Queens"
elif version > (2, 42):