mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
Fix padding:
This commit is contained in:
parent
23a3957209
commit
6425d2fb49
@ -109,14 +109,14 @@ if __name__ == "__main__":
|
||||
with open(run_log_path, 'w', encoding='utf-8') as log:
|
||||
with subprocess.Popen(cmd, shell=True, stderr=log, stdout=log) as process:
|
||||
retcode = process.wait()
|
||||
if retcode == 0:
|
||||
logging.info("Run successfully")
|
||||
status = "Success"
|
||||
description = "Run Ok"
|
||||
else:
|
||||
description = "Run failed (non zero exit code)"
|
||||
status = "failure"
|
||||
logging.info("Run failed")
|
||||
if retcode == 0:
|
||||
logging.info("Run successfully")
|
||||
status = "Success"
|
||||
description = "Run Ok"
|
||||
else:
|
||||
description = "Run failed (non zero exit code)"
|
||||
status = "failure"
|
||||
logging.info("Run failed")
|
||||
|
||||
subprocess.check_call(f"sudo chown -R ubuntu:ubuntu {temp_path}", shell=True)
|
||||
files = os.listdir(test_output)
|
||||
|
Loading…
Reference in New Issue
Block a user