mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 06:49:47 +00:00
Display method docstrings on the dashboard (#270)
Collapsed with <details> because they can be pretty long and make the table harder to read.
This commit is contained in:
@ -246,7 +246,13 @@ def build_test_table(
|
|||||||
row_anchor = md5sum(row_anchor)
|
row_anchor = md5sum(row_anchor)
|
||||||
|
|
||||||
row = HTML.tr(
|
row = HTML.tr(
|
||||||
HTML.th(HTML.a(test_name, href=f"#{row_anchor}"), class_="test-name"),
|
HTML.th(
|
||||||
|
HTML.details(
|
||||||
|
HTML.summary(HTML.a(test_name, href=f"#{row_anchor}")),
|
||||||
|
docstring(getattr(getattr(module, class_name), test_name)),
|
||||||
|
),
|
||||||
|
class_="test-name",
|
||||||
|
),
|
||||||
id=row_anchor,
|
id=row_anchor,
|
||||||
)
|
)
|
||||||
rows.append(row)
|
rows.append(row)
|
||||||
|
Reference in New Issue
Block a user