From 0da1c343a0e19eb2bfbfe36cda3b7ace719267a7 Mon Sep 17 00:00:00 2001 From: alesapin Date: Sun, 31 Oct 2021 23:47:11 +0300 Subject: [PATCH] Fix style check --- tests/ci/docs_release.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/ci/docs_release.py b/tests/ci/docs_release.py index 894ca8da4ac..832a3293ae2 100644 --- a/tests/ci/docs_release.py +++ b/tests/ci/docs_release.py @@ -106,7 +106,8 @@ if __name__ == "__main__": os.makedirs(test_output) token = os.getenv('CLOUDFLARE_TOKEN') - cmd = f"docker run --cap-add=SYS_PTRACE --volume=$SSH_AUTH_SOCK:/ssh-agent -e SSH_AUTH_SOCK=/ssh-agent -e CLOUDFLARE_TOKEN={token} --volume={repo_path}:/repo_path --volume={test_output}:/output_path {docker_image}" + cmd = "docker run --cap-add=SYS_PTRACE --volume=$SSH_AUTH_SOCK:/ssh-agent -e SSH_AUTH_SOCK=/ssh-agent " \ + f"-e CLOUDFLARE_TOKEN={token} --volume={repo_path}:/repo_path --volume={test_output}:/output_path {docker_image}" run_log_path = os.path.join(test_output, 'runlog.log')