tests: add pytest.mark.isisd to those tests missing it

Signed-off-by: Donald Sharp <sharpd@nvidia.com>
This commit is contained in:
Donald Sharp 2021-07-28 09:44:34 -04:00
parent 02546fc1d9
commit dbc5be82d8
4 changed files with 8 additions and 1 deletions

View File

@ -84,6 +84,9 @@ from lib.topolog import logger
# Required to instantiate the topology builder class. # Required to instantiate the topology builder class.
from mininet.topo import Topo from mininet.topo import Topo
pytestmark = [pytest.mark.isisd]
# Global multi-dimensional dictionary containing all expected outputs # Global multi-dimensional dictionary containing all expected outputs
outputs = {} outputs = {}

View File

@ -82,7 +82,7 @@ from lib.topolog import logger
# Required to instantiate the topology builder class. # Required to instantiate the topology builder class.
from mininet.topo import Topo from mininet.topo import Topo
pytestmark = [pytest.mark.isisd] pytestmark = [pytest.mark.isisd, pytest.mark.ldpd]
# Global multi-dimensional dictionary containing all expected outputs # Global multi-dimensional dictionary containing all expected outputs
outputs = {} outputs = {}

View File

@ -82,6 +82,8 @@ from lib.snmptest import SnmpTester
# Required to instantiate the topology builder class. # Required to instantiate the topology builder class.
from mininet.topo import Topo from mininet.topo import Topo
pytestmark = [pytest.mark.isisd, pytest.mark.ldpd, pytest.mark.snmp]
class TemplateTopo(Topo): class TemplateTopo(Topo):
"Test topology builder" "Test topology builder"

View File

@ -80,6 +80,8 @@ from lib.topolog import logger
# Required to instantiate the topology builder class. # Required to instantiate the topology builder class.
from mininet.topo import Topo from mininet.topo import Topo
pytestmark = [pytest.mark.isisd, pytest.mark.ldpd]
class TemplateTopo(Topo): class TemplateTopo(Topo):
"Test topology builder" "Test topology builder"