From b846a44a8dbc83865afa7ed3a0fa84485299035c Mon Sep 17 00:00:00 2001 From: Tomas Susanka Date: Thu, 9 Jan 2020 15:01:01 +0000 Subject: [PATCH] tests/ui: relative path to report pages --- tests/ui_tests/report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ui_tests/report.py b/tests/ui_tests/report.py index 005ef54b55..de8d4429b0 100644 --- a/tests/ui_tests/report.py +++ b/tests/ui_tests/report.py @@ -63,7 +63,7 @@ def _report_links(tests, status): th("Link to report") for test in tests: with tr(): - td(a(test, href=REPORTS_PATH / status / (test + ".html"))) + td(a(test, href="%s/%s.html" % (status, test))) def clear_dir():