diff options
author | Dmitry Valter <d-valter@yandex-team.com> | 2024-03-11 10:38:46 +0000 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2024-07-12 15:43:24 +0000 |
commit | 34fa0ce8f70a341df432b0baa3deaa1e87c71b95 (patch) | |
tree | e9a282b8376dd6aa7fd904238768f77df137b35a /test/test_nat44_ei.py | |
parent | 7b7bc045f83d0094aa927bfd44d1ac157005a34c (diff) |
tests: skip more excluded plugin tests
Check and skip VPP_EXCLUDED_PLUGINS tests for most of plugins.
Type: improvement
Signed-off-by: Dmitry Valter <d-valter@yandex-team.com>
Change-Id: I23fd3666729251c639aa8da72a676058e3f5bb4e
Diffstat (limited to 'test/test_nat44_ei.py')
-rw-r--r-- | test/test_nat44_ei.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test_nat44_ei.py b/test/test_nat44_ei.py index 4748744ea6a..166044db435 100644 --- a/test/test_nat44_ei.py +++ b/test/test_nat44_ei.py @@ -36,6 +36,7 @@ from util import ppp from vpp_ip_route import VppIpRoute, VppRoutePath from vpp_neighbor import VppNeighbor from vpp_papi import VppEnum +from config import config # NAT HA protocol event data @@ -913,6 +914,7 @@ def get_nat44_ei_in2out_worker_index(ip, vpp_worker_count): @tag_fixme_debian11 +@unittest.skipIf("nat" in config.excluded_plugins, "Exclude NAT plugin tests") class TestNAT44EI(MethodHolder): """NAT44EI Test Cases""" @@ -4122,6 +4124,7 @@ class TestNAT44EI(MethodHolder): i.remove_vpp_config() +@unittest.skipIf("nat" in config.excluded_plugins, "Exclude NAT plugin tests") class TestNAT44Out2InDPO(MethodHolder): """NAT44EI Test Cases using out2in DPO""" @@ -4263,6 +4266,7 @@ class TestNAT44Out2InDPO(MethodHolder): self.verify_capture_in(capture, self.pg0) +@unittest.skipIf("nat" in config.excluded_plugins, "Exclude NAT plugin tests") class TestNAT44EIMW(MethodHolder): """NAT44EI Test Cases (multiple workers)""" |