From 02546fc1d9be2a364fde31b322b1cd2731f5a590 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Wed, 28 Jul 2021 09:41:45 -0400 Subject: [PATCH] tests: add pytest.mark.nhrpd for those missing it Signed-off-by: Donald Sharp --- tests/topotests/nhrp_topo/test_nhrp_topo.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/topotests/nhrp_topo/test_nhrp_topo.py b/tests/topotests/nhrp_topo/test_nhrp_topo.py index 1687961f34..f59e3ae1b9 100644 --- a/tests/topotests/nhrp_topo/test_nhrp_topo.py +++ b/tests/topotests/nhrp_topo/test_nhrp_topo.py @@ -45,6 +45,8 @@ from lib.topolog import logger # Required to instantiate the topology builder class. from mininet.topo import Topo +pytestmark = [pytest.mark.nhrpd] + class NHRPTopo(Topo): "Test topology builder" @@ -115,7 +117,7 @@ def setup_module(mod): ) # Initialize all routers. - logger.info('Launching BGP, NHRP') + logger.info('Launching NHRP') for name in router_list: router = tgen.gears[name] router.start() -- 2.39.5