aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio/tests/interop/client.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/python/grpcio/tests/interop/client.py')
-rw-r--r--src/python/grpcio/tests/interop/client.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/python/grpcio/tests/interop/client.py b/src/python/grpcio/tests/interop/client.py
index e3d5545a02..8aa1ce30c1 100644
--- a/src/python/grpcio/tests/interop/client.py
+++ b/src/python/grpcio/tests/interop/client.py
@@ -76,6 +76,9 @@ def _stub(args):
creds = oauth2client_client.GoogleCredentials.get_application_default()
scoped_creds = creds.create_scoped([args.oauth_scope])
call_creds = implementations.google_call_credentials(scoped_creds)
+ elif args.test_case == 'jwt_token_creds':
+ creds = oauth2client_client.GoogleCredentials.get_application_default()
+ call_creds = implementations.google_call_credentials(creds)
else:
call_creds = None
if args.use_tls: