Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use python binary to run multiprocess tests. #26229

Merged
merged 3 commits into from Apr 20, 2020
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Propagate pipe failure.

  • Loading branch information
jdm committed Apr 20, 2020
commit 34c3030ddd2cc47aea8db972bff8de87467ee5da
@@ -685,7 +685,7 @@ def build_command(self):
# So concatenate scripts and use a single `bash` command instead.
return [
[
"/bin/bash", "--login", "-x", "-e", "-c",
"/bin/bash", "--login", "-x", "-e", "-o", "pipefail", "-c",
deindent("\n".join(self.scripts))
]
]
@@ -749,7 +749,7 @@ def build_worker_payload(self):
"image": self.docker_image,
"maxRunTime": self.max_run_time_minutes * 60,
"command": [
"/bin/bash", "--login", "-x", "-e", "-c",
"/bin/bash", "--login", "-x", "-e", "-o", "pipefail", "-c",
deindent("\n".join(self.scripts))
],
}
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.