From bfab3241482769e75d7330a1980de6432651a877 Mon Sep 17 00:00:00 2001 From: Mark Stapp Date: Tue, 9 Jun 2020 15:05:16 -0400 Subject: [PATCH] tests: include lib/bgp.py convergence timeout to 130 The convergence timeout in lib/bgp.py was something like 40 secs; that's not really long enough for the CI. Raise the timeout to 40 x 3 secs. Signed-off-by: Mark Stapp --- tests/topotests/lib/bgp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/topotests/lib/bgp.py b/tests/topotests/lib/bgp.py index 69c807f300..2ba0c68c2f 100644 --- a/tests/topotests/lib/bgp.py +++ b/tests/topotests/lib/bgp.py @@ -868,7 +868,7 @@ def verify_router_id(tgen, topo, input_dict): return True -@retry(attempts=20, wait=2, return_is_str=True) +@retry(attempts=44, wait=3, return_is_str=True) def verify_bgp_convergence(tgen, topo, dut=None): """ API will verify if BGP is converged with in the given time frame.