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 <sergi.blanch.torne@collabora.com>
Reviewed-by: Eric Engestrom <eric@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/38919>
This commit is contained in:
Sergi Blanch Torne 2025-12-12 11:23:34 +01:00 committed by Marge Bot
parent c5f5b6b78d
commit 9e62e22598

View file

@ -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"})