From 8643fb2f525877de973db6188ddaff18fa57fc25 Mon Sep 17 00:00:00 2001 From: Douglas Yang Date: Mon, 26 Jan 2026 09:46:33 -0800 Subject: [PATCH] fix: remove truncation for test and job names in ci failure monitor (#17765) --- scripts/ci_monitor/ci_failures_analysis.py | 25 ++++------------------ 1 file changed, 4 insertions(+), 21 deletions(-) diff --git a/scripts/ci_monitor/ci_failures_analysis.py b/scripts/ci_monitor/ci_failures_analysis.py index be02d8352..d5a4f6242 100644 --- a/scripts/ci_monitor/ci_failures_analysis.py +++ b/scripts/ci_monitor/ci_failures_analysis.py @@ -1758,17 +1758,8 @@ class SGLangFailuresAnalyzer: test_data = test_info["test_data"] job_data = test_info["job_data"] - # Truncate names - test_display = ( - test_file - if len(test_file) <= 30 - else test_file[:27] + "..." - ) - job_display = ( - job_name - if len(job_name) <= 25 - else job_name[:22] + "..." - ) + test_display = test_file + job_display = job_name # Get first and last failure from job level first_failure = job_data.get("first_failure_in_streak") @@ -1851,16 +1842,8 @@ class SGLangFailuresAnalyzer: failed_runs = test_info["failed_runs"] total_test_runs = test_info["total_test_runs"] - test_display = ( - test_file - if len(test_file) <= 30 - else test_file[:27] + "..." - ) - job_display = ( - job_name - if len(job_name) <= 25 - else job_name[:22] + "..." - ) + test_display = test_file + job_display = job_name # Build history links recent_runs = test_data.get("recent_runs", [])