mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 01:51:59 +00:00
Merge branch 'clickbench-ci' of github.com:ClickHouse/ClickHouse into clickbench-ci
This commit is contained in:
commit
e5a19109bb
@ -94,7 +94,7 @@ def process_results(
|
||||
results_path = result_directory / "test_results.tsv"
|
||||
|
||||
if results_path.exists():
|
||||
logging.info("Found test_results.tsv")
|
||||
logging.info("Found %s", results_path.name)
|
||||
else:
|
||||
logging.info("Files in result folder %s", os.listdir(result_directory))
|
||||
return "error", "Not found test_results.tsv", test_results, additional_files
|
||||
|
@ -72,7 +72,7 @@ def process_results(result_directory: Path) -> Tuple[str, str, TestResults]:
|
||||
status = []
|
||||
status_path = result_directory / "check_status.tsv"
|
||||
if status_path.exists():
|
||||
logging.info("Found check_status.tsv")
|
||||
logging.info("Found %s", status_path.name)
|
||||
with open(status_path, "r", encoding="utf-8") as status_file:
|
||||
status = list(csv.reader(status_file, delimiter="\t"))
|
||||
if len(status) != 1 or len(status[0]) != 2:
|
||||
|
@ -169,7 +169,7 @@ def process_results(
|
||||
status = []
|
||||
status_path = result_directory / "check_status.tsv"
|
||||
if status_path.exists():
|
||||
logging.info("Found check_status.tsv")
|
||||
logging.info("Found %s", status_path.name)
|
||||
with open(status_path, "r", encoding="utf-8") as status_file:
|
||||
status = list(csv.reader(status_file, delimiter="\t"))
|
||||
|
||||
|
@ -118,7 +118,7 @@ def process_results(
|
||||
status = []
|
||||
status_path = result_directory / "check_status.tsv"
|
||||
if status_path.exists():
|
||||
logging.info("Found check_status.tsv")
|
||||
logging.info("Found %s", status_path.name)
|
||||
with open(status_path, "r", encoding="utf-8") as status_file:
|
||||
status = list(csv.reader(status_file, delimiter="\t"))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user