Remove VolumeBackupRestoreIntegrationTest from skip list

We cannot run this test in the gate because the volume backup feature is
enabled. However, with a change to the Heat tempest plugin to allow this
feature to be automatically skipped based on the tempest config, we no
longer need this test to be explicitly included in the skip list.

Change-Id: Iaefa5c272c4322498330307ea9bd6843d276ef1b
Depends-On: https://review.openstack.org/632989
This commit is contained in:
Zane Bitter 2019-03-07 11:07:03 -05:00 committed by Rabi Mishra
parent 404ca3fad1
commit ef8d50856f
1 changed files with 4 additions and 1 deletions

View File

@ -84,11 +84,14 @@ function _config_tempest_plugin
# Skip VolumeBackupRestoreIntegrationTest skipped until failure rate can be reduced ref bug #1382300
# Skip AutoscalingLoadBalancerTest and AutoscalingLoadBalancerv2Test as deprecated neutron-lbaas service is not enabled
iniset $conf_file heat_plugin skip_scenario_test_list 'AutoscalingLoadBalancerTest, AutoscalingLoadBalancerv2Test, \
SoftwareConfigIntegrationTest, VolumeBackupRestoreIntegrationTest'
SoftwareConfigIntegrationTest'
# Skip LoadBalancerv2Test as deprecated neutron-lbaas service is not enabled
iniset $conf_file heat_plugin skip_functional_test_list 'LoadBalancerv2Test'
# disable cinder backup feature
iniset $conf_file volume-feature-enabled backup False
cat $conf_file
}