Don't put built documentation to output path

This commit is contained in:
Mikhail f. Shiryaev 2022-04-15 16:04:59 +02:00
parent c1014aa60c
commit 40dafbe015
No known key found for this signature in database
GPG Key ID: 4B02ED204C7D93F4

View File

@ -56,7 +56,7 @@ if __name__ == "__main__":
if not os.path.exists(test_output):
os.makedirs(test_output)
cmd = f"docker run --cap-add=SYS_PTRACE --volume={repo_path}:/ClickHouse --volume={test_output}:/output_path {docker_image} --out-dir /output_path"
cmd = f"docker run --cap-add=SYS_PTRACE --volume={repo_path}:/ClickHouse --volume={test_output}:/output_path {docker_image}"
run_log_path = os.path.join(test_output, "runlog.log")
logging.info("Running command: '%s'", cmd)