From 34fa0ce8f70a341df432b0baa3deaa1e87c71b95 Mon Sep 17 00:00:00 2001 From: Dmitry Valter Date: Mon, 11 Mar 2024 10:38:46 +0000 Subject: tests: skip more excluded plugin tests Check and skip VPP_EXCLUDED_PLUGINS tests for most of plugins. Type: improvement Signed-off-by: Dmitry Valter Change-Id: I23fd3666729251c639aa8da72a676058e3f5bb4e --- test/test_l2tp.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test/test_l2tp.py') diff --git a/test/test_l2tp.py b/test/test_l2tp.py index 172b0b8e0b8..34022629cc6 100644 --- a/test/test_l2tp.py +++ b/test/test_l2tp.py @@ -5,9 +5,13 @@ from scapy.layers.inet6 import IPv6 from asfframework import tag_fixme_vpp_workers from framework import VppTestCase +from config import config + +import unittest @tag_fixme_vpp_workers +@unittest.skipIf("l2tp" in config.excluded_plugins, "Exclude L2TP plugin tests") class TestL2tp(VppTestCase): """L2TP Test Case""" -- cgit