Skip to content
Snippets Groups Projects
Commit 29fd0056 authored by Jan Tattermusch's avatar Jan Tattermusch
Browse files

adjust paralellism and timeouts

parent 39e3cb3a
No related branches found
No related tags found
No related merge requests found
...@@ -34,4 +34,4 @@ set -ex ...@@ -34,4 +34,4 @@ set -ex
# Enter the gRPC repo root # Enter the gRPC repo root
cd $(dirname $0)/../.. cd $(dirname $0)/../..
tools/run_tests/run_interop_tests.py -l all -s all --cloud_to_prod --cloud_to_prod_auth --use_docker -t -j 8 $@ || true tools/run_tests/run_interop_tests.py -l all -s all --cloud_to_prod --cloud_to_prod_auth --use_docker -t -j 12 $@ || true
...@@ -383,7 +383,7 @@ def cloud_to_prod_jobspec(language, test_case, docker_image=None, auth=False): ...@@ -383,7 +383,7 @@ def cloud_to_prod_jobspec(language, test_case, docker_image=None, auth=False):
cwd=cwd, cwd=cwd,
environ=environ, environ=environ,
shortname='%s:%s:%s' % (suite_name, language, test_case), shortname='%s:%s:%s' % (suite_name, language, test_case),
timeout_seconds=2*60, timeout_seconds=90,
flake_retries=5 if args.allow_flakes else 0, flake_retries=5 if args.allow_flakes else 0,
timeout_retries=2 if args.allow_flakes else 0, timeout_retries=2 if args.allow_flakes else 0,
kill_handler=_job_kill_handler) kill_handler=_job_kill_handler)
...@@ -419,7 +419,7 @@ def cloud_to_cloud_jobspec(language, test_case, server_name, server_host, ...@@ -419,7 +419,7 @@ def cloud_to_cloud_jobspec(language, test_case, server_name, server_host,
environ=environ, environ=environ,
shortname='cloud_to_cloud:%s:%s_server:%s' % (language, server_name, shortname='cloud_to_cloud:%s:%s_server:%s' % (language, server_name,
test_case), test_case),
timeout_seconds=2*60, timeout_seconds=90,
flake_retries=5 if args.allow_flakes else 0, flake_retries=5 if args.allow_flakes else 0,
timeout_retries=2 if args.allow_flakes else 0, timeout_retries=2 if args.allow_flakes else 0,
kill_handler=_job_kill_handler) kill_handler=_job_kill_handler)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment