diff options
author | Nicolas Noble <nicolasnoble@users.noreply.github.com> | 2015-09-02 15:30:09 -0700 |
---|---|---|
committer | Nicolas Noble <nicolasnoble@users.noreply.github.com> | 2015-09-02 15:30:09 -0700 |
commit | 03a722c95f03a860ebb2523e81208ed9a895cda9 (patch) | |
tree | 6805cf24a4a553a72dca0a9c70c9d32a8d50c271 /tools/run_tests | |
parent | c6e98eab5c0c1864304ebe0996b3c8db52331048 (diff) | |
parent | 03a463a994f0dcd3d2beb9122b7613d32e40766a (diff) |
Merge pull request #3187 from ctiller/another-one-bites-the-dust
Give interop tests more time to build
Diffstat (limited to 'tools/run_tests')
-rwxr-xr-x | tools/run_tests/run_interops.py | 4 |
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'] |