py3: ensure python3-neutron-lbaas is installed

Update purge packages and py3 packages to include python{3}-neutron-lbaas
otherwise we still end up with a python 2 deployment.

Change-Id: Ib01bab2802a13bf72973af8d02f70a5797d18577
This commit is contained in:
James Page 2018-10-03 14:36:52 +01:00
parent 42ac2016a3
commit 80c6e58bd7
2 changed files with 4 additions and 1 deletions

View File

@ -186,12 +186,14 @@ PURGE_PACKAGES = [
'python-nova',
'python-neutron',
'python-neutron-fwaas',
'python-neutron-lbaas',
]
PY3_PACKAGES = [
'python3-nova',
'python3-neutron',
'python3-neutron-fwaas',
'python3-neutron-lbaas',
]
EARLY_PACKAGES = {

View File

@ -174,7 +174,8 @@ class TestNeutronUtils(CharmTestCase):
'python-oslo.config',
'python-nova',
'python-neutron',
'python-neutron-fwaas'],
'python-neutron-fwaas',
'python-neutron-lbaas'],
neutron_utils.get_purge_packages()
)