diff options
author | 2024-03-11 10:38:46 +0000 | |
---|---|---|
committer | 2024-07-12 15:43:24 +0000 | |
commit | 34fa0ce8f70a341df432b0baa3deaa1e87c71b95 (patch) | |
tree | e9a282b8376dd6aa7fd904238768f77df137b35a /test/test_lacp.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_lacp.py')
-rw-r--r-- | test/test_lacp.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/test_lacp.py b/test/test_lacp.py index af209501184..d8739775f27 100644 --- a/test/test_lacp.py +++ b/test/test_lacp.py @@ -10,12 +10,14 @@ from asfframework import VppTestRunner from vpp_memif import VppSocketFilename, VppMemif from vpp_bond_interface import VppBondInterface from vpp_papi import VppEnum +from config import config bond_mac = "02:02:02:02:02:02" lacp_dst_mac = "01:80:c2:00:00:02" LACP_COLLECTION_AND_DISTRIBUTION_STATE = 63 +@unittest.skipIf("lacp" in config.excluded_plugins, "Exclude LACP plugin tests") class TestMarker(VppTestCase): """LACP Marker Protocol Test Case""" @@ -147,6 +149,7 @@ class TestMarker(VppTestCase): bond1.remove_vpp_config() +@unittest.skipIf("lacp" in config.excluded_plugins, "Exclude LACP plugin tests") class TestLACP(VppTestCase): """LACP Test Case""" |