Do not install the package of tempest-horizon

All tests implemented in tempest-horizon have been merged to tempest[1]
and tempest-horizon will be retired, so we assume that we no longer
have an independent package for tempest-horizon.

[1] https://review.opendev.org/771727/

Change-Id: I24982a4161a899975a0303f92a9ec4e15adc8f8c
This commit is contained in:
Takashi Kajinami
2021-01-26 09:41:52 +09:00
parent b2e1ce4ce2
commit 65110d583b
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