Merge pull request #40112 from ClickHouse/jobs-log

Use a job ID as ref text
This commit is contained in:
Mikhail f. Shiryaev 2022-08-11 13:23:16 +02:00 committed by GitHub
commit 22416193da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -239,8 +239,8 @@ def create_test_html_report(
)
raw_log_name = os.path.basename(raw_log_url)
if raw_log_name.endswith("?check_suite_focus=true"):
raw_log_name = "Job (github actions)"
if "?" in raw_log_name:
raw_log_name = raw_log_name.split("?")[0]
result = HTML_BASE_TEST_TEMPLATE.format(
title=_format_header(header, branch_name),