aboutsummaryrefslogtreecommitdiffstats
path: root/functest/opnfv_tests/openstack
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2018-10-26 10:52:12 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2018-10-26 10:54:59 +0200
commit7cf46992c7f3e854b038f6f17a279d65108aa764 (patch)
tree05008c9f50735e4b20743c4fe3d436c1b169abf5 /functest/opnfv_tests/openstack
parentdf9d5c5d3b80b613130de59a1810f7fce9cbbc0d (diff)
Temporarily disable Cinder volumes backup tests
From the time being, all OPNFV installers [1][2][3] don't support Cinder volumes backup. We will find a better way to handle the lack of OPNFV requiremements (these tests pass succesfully in Orange Openlab). At least, it will allow verifying tempest_full in OPNFV gates. [1] Apex: https://artifacts.opnfv.org/logs/functest/lf-pod1/2018-10-25_02-17-25/tempest_full/tempest-report.html [2] Compass: https://artifacts.opnfv.org/logs/functest/huawei-virtual9/2018-10-24_04-54-25/tempest_full/tempest-report.html [3] Fuel: https://artifacts.opnfv.org/logs/functest/lf-pod2/gambia/2018-10-25_05-57-54/tempest_full/tempest-report.html Change-Id: I319536070aa77a5dbab6a692a1d76049f75e758b Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'functest/opnfv_tests/openstack')
-rw-r--r--functest/opnfv_tests/openstack/tempest/conf_utils.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/functest/opnfv_tests/openstack/tempest/conf_utils.py b/functest/opnfv_tests/openstack/tempest/conf_utils.py
index 9ffbae44f..e9443d6b3 100644
--- a/functest/opnfv_tests/openstack/tempest/conf_utils.py
+++ b/functest/opnfv_tests/openstack/tempest/conf_utils.py
@@ -228,6 +228,9 @@ def configure_tempest_update_params(
rconfig.add_section('image-feature-enabled')
rconfig.set('image-feature-enabled', 'api_v2', True)
rconfig.set('image-feature-enabled', 'api_v1', False)
+ if not rconfig.has_section('volume-feature-enabled'):
+ rconfig.add_section('volume-feature-enabled')
+ rconfig.set('volume-feature-enabled', 'backup', False)
if not rconfig.has_section('network'):
rconfig.add_section('network')
rconfig.set('network', 'default_network', cidr)