From dbfca7e6eb5aa9dd31913b9457b167139c2896b5 Mon Sep 17 00:00:00 2001 From: Anthony Wen Date: Wed, 29 Jul 2026 11:30:16 -0400 Subject: [PATCH] Simplify ATVM Teams host status table --- atvm/watcher-service/atvm_run_watcher.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/atvm/watcher-service/atvm_run_watcher.py b/atvm/watcher-service/atvm_run_watcher.py index e2bc360..a1e4dd8 100644 --- a/atvm/watcher-service/atvm_run_watcher.py +++ b/atvm/watcher-service/atvm_run_watcher.py @@ -1549,7 +1549,7 @@ def build_status_markdown( f"{host.host} failure excerpt: `{compact_failure_detail(failure_excerpt_source, limit=420)}`" ) - host_lines = ["| Host | Kernel | Status | Detail (For failures, see Failure Notes section below for more details) |", "| --- | --- | --- | --- |"] + host_lines = ["| Host | Kernel | Status |", "| --- | --- | --- |"] for host in ordered_hosts: icon = { "PASS": "✅ PASS", @@ -1558,7 +1558,7 @@ def build_status_markdown( "SKIP": "⏭️ SKIP", "NOT STARTED": "⏳ RUN", }.get(host.status, host.status) - host_lines.append(f"| {host.host} | {host.kernel} | {icon} | {display_host_detail(host)} |") + host_lines.append(f"| {host.host} | {host.kernel} | {icon} |") if currents_url: notes = notes + [f"Currents recorded run: `{currents_url}`"]