aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar Juanli Shen <aspirinsjl@gmail.com>2018-08-30 16:21:49 -0700
committerGravatar GitHub <noreply@github.com>2018-08-30 16:21:49 -0700
commit6b1accb7f2b71d575638b853b608342b13ee6de2 (patch)
treee04ec15ef5838b6b78b36c63cf0d7f65dbb0e451 /tools
parent1e80f2a4b1ca41e77814306d4f0cf09d45641640 (diff)
parent38d3298d534ed90a952ab2e571a34bacff798faa (diff)
Merge pull request #16521 from jtattermusch/interop_to_prod_running_again_1_15_x
Fix candid skipping of interop_to_prod tests (for v1.15.x)
Diffstat (limited to 'tools')
-rwxr-xr-xtools/run_tests/run_interop_tests.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/tools/run_tests/run_interop_tests.py b/tools/run_tests/run_interop_tests.py
index 22055d58e8..741e3c2b32 100755
--- a/tools/run_tests/run_interop_tests.py
+++ b/tools/run_tests/run_interop_tests.py
@@ -776,9 +776,9 @@ def cloud_to_prod_jobspec(language,
'--test_case=%s' % test_case
]
if transport_security == 'tls':
- transport_security_options += ['--use_tls=true']
+ transport_security_options = ['--use_tls=true']
elif transport_security == 'google_default_credentials' and language == 'c++':
- transport_security_options += [
+ transport_security_options = [
'--custom_credentials_type=google_default_credentials'
]
else:
@@ -1519,9 +1519,6 @@ try:
sys.exit(1)
else:
sys.exit(0)
-except Exception as e:
- print('exception occurred:')
- traceback.print_exc(file=sys.stdout)
finally:
# Check if servers are still running.
for server, job in server_jobs.items():