aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar Nicolas Noble <nicolasnoble@users.noreply.github.com>2015-09-02 15:30:09 -0700
committerGravatar Nicolas Noble <nicolasnoble@users.noreply.github.com>2015-09-02 15:30:09 -0700
commit03a722c95f03a860ebb2523e81208ed9a895cda9 (patch)
tree6805cf24a4a553a72dca0a9c70c9d32a8d50c271 /tools
parentc6e98eab5c0c1864304ebe0996b3c8db52331048 (diff)
parent03a463a994f0dcd3d2beb9122b7613d32e40766a (diff)
Merge pull request #3187 from ctiller/another-one-bites-the-dust
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']