Fix paths

This commit is contained in:
Alexey Milovidov 2023-08-03 19:28:59 +02:00
parent 1679ae4819
commit 388feb953d

View File

@ -110,10 +110,10 @@ def main():
s3_prefix = f"{pr_info.number}/{pr_info.sha}/sqltest_{check_name_lower}/" s3_prefix = f"{pr_info.number}/{pr_info.sha}/sqltest_{check_name_lower}/"
paths = { paths = {
"run.log": run_log_path, "run.log": run_log_path,
"server.log.zst": os.path.join(workspace_path, "/workspace/server.log.zst"), "server.log.zst": os.path.join(workspace_path, "server.log.zst"),
"server.err.log.zst": os.path.join(workspace_path, "/workspace/server.err.log.zst"), "server.err.log.zst": os.path.join(workspace_path, "server.err.log.zst"),
"report.html": os.path.join(workspace_path, "/workspace/report.html"), "report.html": os.path.join(workspace_path, "report.html"),
"test.log": os.path.join(workspace_path, "/workspace/test.log"), "test.log": os.path.join(workspace_path, "test.log"),
} }
s3_helper = S3Helper() s3_helper = S3Helper()