Merge "Do not install the package of tempest-horizon"

This commit is contained in:
Zuul 2021-01-27 23:24:16 +00:00 committed by Gerrit Code Review
commit 1b6aced5a1
3 changed files with 0 additions and 11 deletions

View File

@ -755,13 +755,6 @@ class tempest(
tag => ['openstack', 'tempest-package'],
}
}
if $horizon_available and $::tempest::params::python_horizon_tests {
package { 'python-horizon-tests':
ensure => present,
name => $::tempest::params::python_horizon_tests,
tag => ['openstack', 'tempest-package'],
}
}
if $octavia_available and $::tempest::params::python_octavia_tests {
package { 'python-octavia-tests':
ensure => present,

View File

@ -20,7 +20,6 @@ class tempest::params {
$python_designate_tests = "python${pyvers}-designate-tests-tempest"
$python_glance_tests = "python${pyvers}-glance-tests"
$python_heat_tests = "python${pyvers}-heat-tests-tempest"
$python_horizon_tests = "python${pyvers}-horizon-tests-tempest"
$python_ironic_tests = "python${pyvers}-ironic-tests-tempest"
$python_keystone_tests = "python${pyvers}-keystone-tests"
$python_magnum_tests = "python${pyvers}-magnum-tests-tempest"
@ -60,7 +59,6 @@ class tempest::params {
$python_designate_tests = 'designate-tempest-plugin'
$python_glance_tests = false
$python_heat_tests = 'heat-tempest-plugin'
$python_horizon_tests = 'horizon-tempest-plugin'
$python_ironic_tests = 'ironic-tempest-plugin'
$python_keystone_tests = 'keystone-tempest-plugin'
$python_magnum_tests = 'magnum-tempest-plugin'
@ -90,7 +88,6 @@ class tempest::params {
$python_glance_tests = false
$python_gnocchi_tests = false
$python_heat_tests = false
$python_horizon_tests = false
$python_ironic_tests = false
$python_keystone_tests = false
$python_l2gw_tests = false

View File

@ -441,7 +441,6 @@ describe 'tempest' do
it { expect { is_expected.to contain_package('python-neutron-vpnaas-tests') } }
it { expect { is_expected.to contain_package('python-neutron-dynamic-routing-tests') } }
it { expect { is_expected.to contain_package('python-networking-l2gw-tests-tempest') } }
it { expect { is_expected.to contain_package('python-horizon-tests-tempest') } }
end
end
end