summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@nvidia.com>2021-01-23 15:52:44 -0500
committerDonald Sharp <sharpd@nvidia.com>2021-02-04 18:29:04 -0500
commit2c647bcdc8aebee56d3409bab75b73c74cee55b8 (patch)
treeb0c22a57e588a581eee1f9825bb21b9bd21fc361
parent3dedee4fe19d06903df3b0914ed4f16e176df234 (diff)
tests: Add pytest.mark.nhrpd
Go through all tests and mark pytest.mark.nhrpd Signed-off-by: Donald Sharp <sharpd@nvidia.com>
-rw-r--r--tests/topotests/all-protocol-startup/test_all_protocol_startup.py10
1 files changed, 9 insertions, 1 deletions
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