From d6744aa34ab747f664664a67b6051e28ca7c7572 Mon Sep 17 00:00:00 2001 From: StormLiangMS <89824293+StormLiangMS@users.noreply.github.com> Date: Fri, 24 Nov 2023 14:26:18 +0800 Subject: [PATCH] [stress route] Enable test_stress_routes for T1 topo #10841 What is the motivation for this PR? test_stress_routes was skipped for T1 topo, need to enable it. How did you do it? add topo t1 in the mark How did you verify/test it? run test with T1 TB. --- tests/stress/test_stress_routes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/stress/test_stress_routes.py b/tests/stress/test_stress_routes.py index db6ce15db21..f39665b0053 100644 --- a/tests/stress/test_stress_routes.py +++ b/tests/stress/test_stress_routes.py @@ -14,7 +14,7 @@ logger = logging.getLogger(__name__) pytestmark = [ - pytest.mark.topology('t0', 'm0', 'mx') + pytest.mark.topology('t0', 't1', 'm0', 'mx') ]