Adjust server launch time in ci (#12917)

This commit is contained in:
Ke Bao
2025-11-09 20:41:29 +08:00
committed by GitHub
parent 210a9cab6d
commit bb00e24f87
2 changed files with 2 additions and 2 deletions

View File

@@ -28,7 +28,7 @@ class TestDeepseekV3Basic(CustomTestCase):
cls.process = popen_launch_server(
cls.model,
cls.base_url,
timeout=DEFAULT_TIMEOUT_FOR_SERVER_LAUNCH,
timeout=DEFAULT_TIMEOUT_FOR_SERVER_LAUNCH * 5,
other_args=other_args,
)

View File

@@ -42,7 +42,7 @@ class TestDeepseekV3MTP(CustomTestCase):
cls.process = popen_launch_server(
cls.model,
cls.base_url,
timeout=DEFAULT_TIMEOUT_FOR_SERVER_LAUNCH,
timeout=DEFAULT_TIMEOUT_FOR_SERVER_LAUNCH * 5,
other_args=other_args,
)