Skip to content

Commit b17ac4b

Browse files
committed
Display Ergo and Sable on account_extban page even if they are skipped
1 parent 3714b43 commit b17ac4b

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

irctest/dashboard/format.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,8 +334,10 @@ def write_html_pages(
334334
if job.endswith(("-atheme", "-anope", "-dlk")):
335335
assert is_server
336336
job_categories[job] = "server-with-services"
337+
elif job in ("ergo", "sable"):
338+
job_categories[job] = "server"
337339
elif is_server:
338-
job_categories[job] = "server" # with or without services
340+
job_categories[job] = "server-without-services"
339341
else:
340342
assert is_client
341343
job_categories[job] = "client"
@@ -349,6 +351,11 @@ def write_html_pages(
349351
for result in results
350352
if result.module_name == module_name and not result.skipped
351353
}
354+
if (
355+
"server-with-services" in module_categories
356+
or "server-without-services" in module_categories
357+
):
358+
module_categories.add("server")
352359

353360
module_jobs = [job for job in jobs if job_categories[job] in module_categories]
354361

0 commit comments

Comments
 (0)