From 2c647bcdc8aebee56d3409bab75b73c74cee55b8 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Sat, 23 Jan 2021 15:52:44 -0500 Subject: [PATCH] tests: Add pytest.mark.nhrpd Go through all tests and mark pytest.mark.nhrpd Signed-off-by: Donald Sharp --- .../all-protocol-startup/test_all_protocol_startup.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/tests/topotests/all-protocol-startup/test_all_protocol_startup.py b/tests/topotests/all-protocol-startup/test_all_protocol_startup.py index ce5f1158ac..f7ed29782d 100644 --- a/tests/topotests/all-protocol-startup/test_all_protocol_startup.py +++ b/tests/topotests/all-protocol-startup/test_all_protocol_startup.py @@ -43,7 +43,15 @@ from mininet.link import Intf from functools import partial -pytestmark = [pytest.mark.isisd, pytest.mark.ospfd, pytest.mark.ripd] +pytestmark = [ + pytest.mark.babeld, + pytest.mark.bgpd, + pytest.mark.isisd, + pytest.mark.nhrpd, + pytest.mark.ospfd, + pytest.mark.pbrd, + pytest.mark.ripd, +] sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) from lib import topotest -- 2.39.5