From 9e9401f10e15ac9221e0777768d3547942243cf8 Mon Sep 17 00:00:00 2001 From: Guillaume Boutry Date: Thu, 24 Aug 2023 10:52:01 +0200 Subject: [PATCH] Add tempests tests for Magnum k8s --- zaza/openstack/charm_tests/magnum/tests.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/zaza/openstack/charm_tests/magnum/tests.py b/zaza/openstack/charm_tests/magnum/tests.py index da43a53..a51d1f2 100644 --- a/zaza/openstack/charm_tests/magnum/tests.py +++ b/zaza/openstack/charm_tests/magnum/tests.py @@ -19,6 +19,7 @@ import logging import urllib +import zaza.openstack.charm_tests.tempest.tests as tempest_tests import zaza.openstack.charm_tests.test_utils as test_utils import zaza.openstack.utilities.openstack as openstack_utils import zaza.openstack.utilities.generic as generic_utils @@ -155,3 +156,9 @@ class MagnumBasicDeployment(test_utils.OpenStackBaseTest): return with self.pause_resume(self.services): logging.info("Testing pause resume") + + +class MagnumTempestTestK8S(tempest_tests.TempestTestScaleK8SBase): + """Test magnum k8s scale out and scale back.""" + + application_name = "magnum"