From d336bee056697b0d1028b27d2f6871b729fd2925 Mon Sep 17 00:00:00 2001 From: "Mikhail f. Shiryaev" Date: Fri, 28 Apr 2023 23:51:53 +0200 Subject: [PATCH] Fix the `Logs` header for case when only log_urls is set --- tests/ci/report.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/ci/report.py b/tests/ci/report.py index a40eb559792..cdef8409e7e 100644 --- a/tests/ci/report.py +++ b/tests/ci/report.py @@ -370,6 +370,7 @@ def create_test_html_report( colspan += 1 if test_result.log_urls is not None: + has_log_urls = True test_logs_html = "
".join( [_get_html_url(url) for url in test_result.log_urls] )