From 9e62e225984cfbb9502c7fe5c9fa9066f8eca618 Mon Sep 17 00:00:00 2001 From: Sergi Blanch Torne Date: Fri, 12 Dec 2025 11:23:34 +0100 Subject: [PATCH] crnm: clean uncolored job status With the default non-colored job status, all the listed non-colored job statuses can be absorbed by the default behavior. Signed-off-by: Sergi Blanch Torne Reviewed-by: Eric Engestrom Part-of: --- bin/ci/ci_run_n_monitor.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/bin/ci/ci_run_n_monitor.py b/bin/ci/ci_run_n_monitor.py index 987deda427d..7acc1c62e1c 100755 --- a/bin/ci/ci_run_n_monitor.py +++ b/bin/ci/ci_run_n_monitor.py @@ -46,15 +46,11 @@ REFRESH_WAIT_JOBS = 6 MAX_ENABLE_JOB_ATTEMPTS = 3 STATUS_COLORS = defaultdict(lambda: "", { - "created": "", "running": "[blue]", "success": "[green]", "failed": "[red]", "canceled": "[magenta]", "canceling": "[magenta]", - "manual": "", - "pending": "", - "skipped": "", }) COMPLETED_STATUSES = frozenset({"success", "failed"})