diff options
| author | Carmine Scarpitta <cscarpit@cisco.com> | 2024-12-24 10:38:37 +0100 |
|---|---|---|
| committer | Carmine Scarpitta <cscarpit@cisco.com> | 2024-12-24 10:38:37 +0100 |
| commit | 225a1c7ed66720dc8880b84c85511ff852e04476 (patch) | |
| tree | 3893362d6c573481a58ddce8b5c228681e54ffb6 | |
| parent | 9ce3b144c99f172d611a94f9f4f2e1272664a31e (diff) | |
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>
| -rwxr-xr-x | tests/topotests/srv6_static_route/test_srv6_route.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/topotests/srv6_static_route/test_srv6_route.py b/tests/topotests/srv6_static_route/test_srv6_route.py index f23e199d4a..e26775daf7 100755 --- a/tests/topotests/srv6_static_route/test_srv6_route.py +++ b/tests/topotests/srv6_static_route/test_srv6_route.py @@ -27,7 +27,7 @@ from lib import topotest from lib.topogen import Topogen, TopoRouter, get_topogen from lib.topolog import logger -pytestmark = [pytest.mark.bgpd, pytest.mark.sharpd] +pytestmark = [pytest.mark.staticd] def open_json_file(filename): |
