From 6681d8ddc4f60b7aa703a3017dda0bfe83384440 Mon Sep 17 00:00:00 2001 From: dk Date: Fri, 4 Oct 2024 09:10:35 +0700 Subject: [PATCH] [tests/scenarios] increase timeout for l0 --- tests/scenariosv2/l0_test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/scenariosv2/l0_test.py b/tests/scenariosv2/l0_test.py index e0c04a2288d..647f8b24d76 100644 --- a/tests/scenariosv2/l0_test.py +++ b/tests/scenariosv2/l0_test.py @@ -32,6 +32,7 @@ fake = Faker() NUM_USERS = 10 NUM_ENDPOINTS = 3 # test_query, submit_query, schema_query +TIMEOUT = 600 class Event(BaseEvent): @@ -456,5 +457,5 @@ async def test_l0_scenario(request): Event.USER_CHECKED_RESULTS, Event.USER_FLOW_COMPLETED, ], - timeout=300, + timeout=TIMEOUT, )