Remove advanced L3HA Nova servers

This should save some resources on upstream CI

Change-Id: Ie6e5d1f334e6e03838a6148645afbcbef580e0c9
This commit is contained in:
Federico Ressi 2021-06-30 11:23:17 +02:00
parent 77a4298313
commit 01ab331c62
3 changed files with 0 additions and 30 deletions

View File

@ -48,8 +48,6 @@ RedHatServerStackFixture = _redhat.RedHatServerStackFixture
L3haNetworkStackFixture = _l3ha.L3haNetworkStackFixture
L3haServerStackFixture = _l3ha.L3haServerStackFixture
L3haUbuntuServerStackFixture = _l3ha.L3haUbuntuServerStackFixture
L3haCentosServerStackFixture = _l3ha.L3haCentosServerStackFixture
L3haPeerServerStackFixture = _l3ha.L3haPeerServerStackFixture
L3haDifferentHostServerStackFixture = _l3ha.L3haDifferentHostServerStackFixture
L3haSameHostServerStackFixture = _l3ha.L3haSameHostServerStackFixture

View File

@ -15,11 +15,9 @@ from __future__ import absolute_import
import tobiko
from tobiko.openstack import neutron
from tobiko.openstack.stacks import _centos
from tobiko.openstack.stacks import _cirros
from tobiko.openstack.stacks import _neutron
from tobiko.openstack.stacks import _nova
from tobiko.openstack.stacks import _ubuntu
@neutron.skip_if_missing_networking_extensions('l3-ha')
@ -47,13 +45,3 @@ class L3haSameHostServerStackFixture(
class L3haDifferentHostServerStackFixture(
L3haPeerServerStackFixture, _nova.DifferentHostServerStackFixture):
pass
class L3haCentosServerStackFixture(_centos.CentosServerStackFixture,
L3haServerStackFixture):
pass
class L3haUbuntuServerStackFixture(_ubuntu.UbuntuServerStackFixture,
L3haServerStackFixture):
pass

View File

@ -131,22 +131,6 @@ class L3HAPortTest(PortTest):
stack = tobiko.required_setup_fixture(stacks.L3haServerStackFixture)
@neutron.skip_if_missing_networking_extensions('l3-ha')
@neutron.skip_if_missing_networking_agents(binary='neutron-l3-agent',
count=2)
class CentosServerL3HAPortTest(PortTest):
#: Resources stack with floating IP and Nova server
stack = tobiko.required_setup_fixture(stacks.L3haCentosServerStackFixture)
@neutron.skip_if_missing_networking_extensions('l3-ha')
@neutron.skip_if_missing_networking_agents(binary='neutron-l3-agent',
count=2)
class UbuntuServerL3HAPortTest(PortTest):
#: Resources stack with floating IP and Nova server
stack = tobiko.required_setup_fixture(stacks.L3haUbuntuServerStackFixture)
# --- Port events logging ----------------------------------------------------
class PortLogsStack(stacks.CirrosServerStackFixture):