From c4057baab7b546e7c478af3cae8c69cd609a853d Mon Sep 17 00:00:00 2001 From: Renato Westphal Date: Tue, 15 Aug 2017 16:30:30 -0300 Subject: [PATCH] ldp_vpls_topo1: skip all tests on stable/2.0 Signed-off-by: Renato Westphal --- tests/topotests/ldp-vpls-topo1/test_ldp_vpls_topo1.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/topotests/ldp-vpls-topo1/test_ldp_vpls_topo1.py b/tests/topotests/ldp-vpls-topo1/test_ldp_vpls_topo1.py index 211ae34dc8..3d54ddfde0 100755 --- a/tests/topotests/ldp-vpls-topo1/test_ldp_vpls_topo1.py +++ b/tests/topotests/ldp-vpls-topo1/test_ldp_vpls_topo1.py @@ -146,6 +146,9 @@ def setup_module(mod): ) tgen.start_router() + for router in router_list.values(): + if router.has_version('<', '3'): + pytest.exit('unsupported version') def teardown_module(mod): "Teardown the pytest environment" -- 2.39.5