aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-08-26 14:14:26 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-08-26 14:14:26 -0700
commit03a463a994f0dcd3d2beb9122b7613d32e40766a (patch)
treeefc792f380ef5f4f80ff78669e19a1ff11528f5e /tools
parent495c0d332e3ad398d9b3ec7fa3f0f4811032bfa1 (diff)
Give interop tests more time to build
Diffstat (limited to 'tools')
-rwxr-xr-xtools/run_tests/run_interops.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/run_tests/run_interops.py b/tools/run_tests/run_interops.py
index e1d40d32c1..17083975d8 100755
--- a/tools/run_tests/run_interops.py
+++ b/tools/run_tests/run_interops.py
@@ -8,7 +8,9 @@ argp.add_argument('-l', '--language',
args = argp.parse_args()
# build job
-build_job = jobset.JobSpec(cmdline=['tools/run_tests/run_interops_build.sh', '%s' % args.language], shortname='build')
+build_job = jobset.JobSpec(cmdline=['tools/run_tests/run_interops_build.sh', '%s' % args.language],
+ shortname='build',
+ timeout_seconds=30*60)
# test jobs, each test is a separate job to run in parallel
_TESTS = ['large_unary', 'empty_unary', 'ping_pong', 'client_streaming', 'server_streaming']