tests: Fix markers in srv6_static_route topotest

`srv6_static_route` is a pure staticd topotest. It does not have any
dependency on bgpd and sharpd.

Let's fix the pytestmark to include only staticd.

Signed-off-by: Carmine Scarpitta <cscarpit@cisco.com>
This commit is contained in:
Carmine Scarpitta 2024-12-24 10:38:37 +01:00
parent 9ce3b144c9
commit 225a1c7ed6

View File

@ -27,7 +27,7 @@ from lib import topotest
from lib.topogen import Topogen, TopoRouter, get_topogen from lib.topogen import Topogen, TopoRouter, get_topogen
from lib.topolog import logger from lib.topolog import logger
pytestmark = [pytest.mark.bgpd, pytest.mark.sharpd] pytestmark = [pytest.mark.staticd]
def open_json_file(filename): def open_json_file(filename):