Tempest: Add l3-ha extension requirement for HA tests
Change-Id: I3b6cc4888875000d6400758a15ea20ad59d39240
Closes-Bug: #1768209
diff --git a/neutron_tempest_plugin/api/test_routers.py b/neutron_tempest_plugin/api/test_routers.py
index bc657e0..e1b2eb1 100644
--- a/neutron_tempest_plugin/api/test_routers.py
+++ b/neutron_tempest_plugin/api/test_routers.py
@@ -14,6 +14,7 @@
# under the License.
import netaddr
+
from tempest.common import utils as tutils
from tempest.lib.common.utils import data_utils
from tempest.lib import decorators
@@ -241,6 +242,11 @@
self.admin_client)
self.assertTrue(create_body['router']['distributed'])
+
+class DvrRoutersTestToCentralized(base_routers.BaseRouterTest):
+
+ required_extensions = ['dvr', 'l3-ha']
+
@decorators.idempotent_id('644d7a4a-01a1-4b68-bb8d-0c0042cb1729')
def test_convert_centralized_router(self):
router_args = {'tenant_id': self.client.tenant_id,