From f4a92f4b5634f3689aa90a6fcb8a1e6cf10a07f6 Mon Sep 17 00:00:00 2001 From: Lianmin Zheng Date: Sun, 26 Jan 2025 04:17:35 -0800 Subject: [PATCH] Temporarily skip the openai frontend tests (#3151) --- test/lang/run_suite.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/lang/run_suite.py b/test/lang/run_suite.py index ebc26e608..327d18b3f 100644 --- a/test/lang/run_suite.py +++ b/test/lang/run_suite.py @@ -4,7 +4,11 @@ import glob from sglang.test.test_utils import run_unittest_files suites = { - "per-commit": ["test_srt_backend.py", "test_openai_backend.py"], + "per-commit": [ + "test_srt_backend.py", + # Skip this due to some OPENAI_API_KEY issues + # "test_openai_backend.py", + ], }