mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
Fix
This commit is contained in:
parent
e858f0b880
commit
babbecc646
@ -185,18 +185,13 @@ def main():
|
||||
state, description, test_results, additional_logs = process_results(output_path)
|
||||
|
||||
if timeout_expired is not None:
|
||||
name = f"Timeout expired for process execution: {run_cmd}"
|
||||
name = f"Timeout expired for process execution"
|
||||
if len(name) > 140:
|
||||
name = name[:136]
|
||||
name += " ..."
|
||||
|
||||
test_results.append(
|
||||
TestResult(
|
||||
f"Timeout expired for process execution: {run_cmd}",
|
||||
"FAIL",
|
||||
timeout,
|
||||
)
|
||||
)
|
||||
test_results.append(TestResult(name, "FAIL", timeout))
|
||||
|
||||
state = "failure"
|
||||
description = test_results[-1].name
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user