From 1f35ee44f99282a51529c44a5c81a568100e258a Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Sun, 21 Aug 2022 03:23:54 +0900 Subject: [PATCH] CentOS: Do not install packages without tempest tests It turned out the following two packages do not provide any tempest tests. - python3-neutron-vpnaas-tests - python3-neutron-dynamic-routing-tests This change removes these two packages from the list of plugin packages installed, because these are not really used. Change-Id: I55c973ec43bc9cdbc5db8c476d39ae09b9c00fe5 --- manifests/params.pp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/manifests/params.pp b/manifests/params.pp index 1762ac10..b5f9e67d 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -27,10 +27,8 @@ class tempest::params { $python_murano_tests = 'python3-murano-tests-tempest' $python_neutron_tests = 'python3-neutron-tests-tempest' $python_l2gw_tests = 'python3-networking-l2gw-tests-tempest' - # NOTE(tkajinam): python3-neutron-vpnaas-tests package provide tempest - # plugin implementation. - $python_vpnaas_tests = 'python3-neutron-vpnaas-tests' - $python_dr_tests = 'python3-neutron-dynamic-routing-tests' + $python_vpnaas_tests = false + $python_dr_tests = false $python_nova_tests = false $python_sahara_tests = 'python3-sahara-tests-tempest' $python_swift_tests = false @@ -82,7 +80,6 @@ class tempest::params { $package_name = 'tempest' }else{ $python_telemetry_tests = false - $python_bgpvpn_tests = false $python_cinder_tests = false $python_designate_tests = false $python_glance_tests = false @@ -90,6 +87,7 @@ class tempest::params { $python_ironic_tests = false $python_keystone_tests = false $python_l2gw_tests = false + $python_vpnaas_tests = false $python_magnum_tests = false $python_mistral_tests = false $python_vitrage_tests = false