]> git.puffer.fish Git - mirror/frr.git/commitdiff
doc: Add `mgmtd` pytest marker into documentation 15389/head
authorDonatas Abraitis <donatas@opensourcerouting.org>
Sat, 17 Feb 2024 09:24:29 +0000 (11:24 +0200)
committerDonatas Abraitis <donatas@opensourcerouting.org>
Sat, 17 Feb 2024 09:24:29 +0000 (11:24 +0200)
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
doc/developer/topotests-markers.rst

index 9f92412595bd14ef912acc7efe08ae53fd53b2a5..670bf0d255d0ce26b0d398ba3c0df65cf541d348 100644 (file)
@@ -12,6 +12,7 @@ systems, all tests must be marked with at least one of the following markers:
 * eigrpd
 * isisd
 * ldpd
+* mgmtd
 * nhrpd
 * ospf6d
 * ospfd
@@ -64,12 +65,12 @@ Adding a single marker:
 
     import pytest
     ...
-    
+
     # add after imports, before defining classes or functions:
     pytestmark = pytest.mark.bfdd
-    
+
     ...
-    
+
     def test_using_bfdd():
 
 
@@ -79,16 +80,16 @@ Adding multiple markers:
 
     import pytest
     ...
-    
+
     # add after imports, before defining classes or functions:
     pytestmark = [
         pytest.mark.bgpd,
         pytest.mark.ospfd,
         pytest.mark.ospf6d
     ]
-    
+
     ...
-    
+
     def test_using_bgpd_ospfd_ospf6d():