diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-10-26 09:11:02 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-10-26 09:24:12 +0200 |
commit | adffed9ce0a5e45b4317e99c4ded99ee80021999 (patch) | |
tree | 9fa21ec35f3cfb69d5347ee8cf7316eb73d8b883 | |
parent | 0a0b3004284a1a68ccfcf76c653d7c879a74f81f (diff) |
Temporarily disable VNC testsstable/fraser
At least Compass and Fuel configure Spice as console [1][2].
It disables vnc testing as it could fail for endusers as well.
[1] https://artifacts.opnfv.org/logs/functest/huawei-virtual9/2018-10-24_04-54-25/tempest_full/tempest-report.html
[2] https://artifacts.opnfv.org/logs/functest/lf-pod2/gambia/2018-10-25_05-57-54/tempest_full/tempest-report.html
Conflicts:
functest/opnfv_tests/openstack/tempest/conf_utils.py
Change-Id: I2a1ecf345cb81170c1b1a3e49f8f3a58602fc3f0
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit df9d5c5d3b80b613130de59a1810f7fce9cbbc0d)
-rw-r--r-- | functest/opnfv_tests/openstack/tempest/conf_utils.py | 3 |
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 8901e6991..02a50ca36 100644 --- a/functest/opnfv_tests/openstack/tempest/conf_utils.py +++ b/functest/opnfv_tests/openstack/tempest/conf_utils.py @@ -225,6 +225,9 @@ def configure_tempest_update_params( rconfig.set('identity', 'default_domain_id', domain_id) rconfig.set('identity-feature-enabled', 'api_v2', False) rconfig.set('identity-feature-enabled', 'api_v2_admin', False) + if not rconfig.has_section('compute-feature-enabled'): + rconfig.add_section('compute-feature-enabled') + rconfig.set('compute-feature-enabled', 'vnc_console', False) if not rconfig.has_section('network'): rconfig.add_section('network') rconfig.set('network', 'default_network', cidr) |