From 268b4297b47a60cddd71caccc3e322250321f38a Mon Sep 17 00:00:00 2001 From: Dmitrii Shcherbakov Date: Tue, 20 Sep 2022 16:18:39 +0300 Subject: [PATCH] Separate DPDK tests from other chassis tests We do not yet support DPDK for ovn-dedicated-chassis, therefore, we need to avoid running DPDK func tests for it. --- zaza/openstack/charm_tests/ovn/tests.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zaza/openstack/charm_tests/ovn/tests.py b/zaza/openstack/charm_tests/ovn/tests.py index 58efd95..4b50510 100644 --- a/zaza/openstack/charm_tests/ovn/tests.py +++ b/zaza/openstack/charm_tests/ovn/tests.py @@ -296,6 +296,10 @@ class ChassisCharmOperationTest(BaseCharmOperationTest): msg='OVS unexpectedly has DPDK initialized'): self._ovs_dpdk_initialized() + +class DPDKTest(test_utils.BaseCharmTest): + """DPDK-related tests.""" + def test_enable_dpdk(self): """Confirm that transitioning to/from DPDK works.""" logging.info('Pre-flight check')