fix: increasing H200 test timeout (#15600)

This commit is contained in:
Douglas Yang
2025-12-23 01:00:37 -08:00
committed by GitHub
parent 66902e0f1b
commit f9dd90ac35
5 changed files with 27 additions and 8 deletions
+9
View File
@@ -1,3 +1,4 @@
import time
from typing import List, Optional
from sglang.test.accuracy_test_runner import (
@@ -115,6 +116,10 @@ def run_combined_tests(
all_passed = False
model_result["errors"].append(perf_result.error)
# Wait for GPU memory and port cleanup
print("\nWaiting 20 seconds for resource cleanup...")
time.sleep(20)
# Run accuracy test
if run_accuracy:
acc_result: AccuracyTestResult = run_accuracy_test(
@@ -127,6 +132,10 @@ def run_combined_tests(
all_passed = False
model_result["errors"].append(acc_result.error)
# Wait for GPU memory and port cleanup
print("\nWaiting 20 seconds for resource cleanup...")
time.sleep(20)
all_results.append(model_result)
# Write performance report if we ran perf tests