1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-11 16:00:57 +00:00

tests/ui: relative path to report pages

This commit is contained in:
Tomas Susanka 2020-01-09 15:01:01 +00:00
parent 30858c4969
commit b846a44a8d

View File

@ -63,7 +63,7 @@ def _report_links(tests, status):
th("Link to report") th("Link to report")
for test in tests: for test in tests:
with tr(): with tr():
td(a(test, href=REPORTS_PATH / status / (test + ".html"))) td(a(test, href="%s/%s.html" % (status, test)))
def clear_dir(): def clear_dir():