diff --git a/manifests/init.pp b/manifests/init.pp index fbf2b4be..741b0331 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -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, diff --git a/manifests/params.pp b/manifests/params.pp index 69aaffaa..9a88bde9 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -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 diff --git a/spec/classes/tempest_init_spec.rb b/spec/classes/tempest_init_spec.rb index 607e007c..093b847e 100644 --- a/spec/classes/tempest_init_spec.rb +++ b/spec/classes/tempest_init_spec.rb @@ -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