Fix bug with override_server flag in run_interop_tests.py

pull/7093/head
murgatroid99 9 years ago
parent a9df5d1029
commit 014675652c
  1. 2
      tools/run_tests/run_interop_tests.py

@ -470,6 +470,7 @@ def cloud_to_prod_jobspec(language, test_case, server_host_name,
flake_retries=5 if args.allow_flakes else 0,
timeout_retries=2 if args.allow_flakes else 0,
kill_handler=_job_kill_handler)
if docker_image:
test_job.container_name = container_name
return test_job
@ -506,6 +507,7 @@ def cloud_to_cloud_jobspec(language, test_case, server_name, server_host,
flake_retries=5 if args.allow_flakes else 0,
timeout_retries=2 if args.allow_flakes else 0,
kill_handler=_job_kill_handler)
if docker_image:
test_job.container_name = container_name
return test_job

Loading…
Cancel
Save