From: Donatas Abraitis Date: Fri, 23 Apr 2021 13:47:47 +0000 (+0300) Subject: tests: Add pytest bgpd markers for recent BGP tests X-Git-Tag: base_8.0~90^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=ad889e0d17723ea076b7210085ce8d6aa69651fc;p=mirror%2Ffrr.git tests: Add pytest bgpd markers for recent BGP tests Signed-off-by: Donatas Abraitis --- diff --git a/tests/topotests/bgp-default-ipv4-ipv6-unicast/test_bgp-default-ipv4-ipv6-unicast.py b/tests/topotests/bgp-default-ipv4-ipv6-unicast/test_bgp-default-ipv4-ipv6-unicast.py index c1dbf0ebec..f9aa94fd14 100644 --- a/tests/topotests/bgp-default-ipv4-ipv6-unicast/test_bgp-default-ipv4-ipv6-unicast.py +++ b/tests/topotests/bgp-default-ipv4-ipv6-unicast/test_bgp-default-ipv4-ipv6-unicast.py @@ -34,6 +34,8 @@ import json import pytest import functools +pytestmark = [pytest.mark.bgpd] + CWD = os.path.dirname(os.path.realpath(__file__)) sys.path.append(os.path.join(CWD, "../")) diff --git a/tests/topotests/bgp-ebgp-common-subnet-nexthop-unchanged/test_bgp-ebgp-common-subnet-nexthop-unchanged.py b/tests/topotests/bgp-ebgp-common-subnet-nexthop-unchanged/test_bgp-ebgp-common-subnet-nexthop-unchanged.py index 19c4c5f87d..3b99065fe0 100644 --- a/tests/topotests/bgp-ebgp-common-subnet-nexthop-unchanged/test_bgp-ebgp-common-subnet-nexthop-unchanged.py +++ b/tests/topotests/bgp-ebgp-common-subnet-nexthop-unchanged/test_bgp-ebgp-common-subnet-nexthop-unchanged.py @@ -40,6 +40,8 @@ import time import pytest import functools +pytestmark = [pytest.mark.bgpd] + CWD = os.path.dirname(os.path.realpath(__file__)) sys.path.append(os.path.join(CWD, "../"))