aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar David Garcia Quintas <dgq@google.com>2016-06-21 17:07:20 -0700
committerGravatar David Garcia Quintas <dgq@google.com>2016-06-21 17:07:20 -0700
commitff32a8648270ccf9fce9d8950eee06e917177715 (patch)
treeb5fa5f5bc373001f62a63f9de2172a59c12883d2
parente89aad02bf236190f1855d1481b5549a02cf8749 (diff)
updated the interop tests driver
-rwxr-xr-xtools/run_tests/run_interop_tests.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/run_tests/run_interop_tests.py b/tools/run_tests/run_interop_tests.py
index 0787637d75..cc146f800a 100755
--- a/tools/run_tests/run_interop_tests.py
+++ b/tools/run_tests/run_interop_tests.py
@@ -54,7 +54,9 @@ os.chdir(ROOT)
_DEFAULT_SERVER_PORT=8080
-_SKIP_COMPRESSION = ['large_compressed_unary',
+_SKIP_COMPRESSION = ['client_compressed_unary',
+ 'client_compressed_streaming'
+ 'server_compressed_unary',
'server_compressed_streaming']
_SKIP_ADVANCED = ['custom_metadata', 'status_code_and_message',
@@ -345,7 +347,8 @@ _TEST_CASES = ['large_unary', 'empty_unary', 'ping_pong',
'cancel_after_begin', 'cancel_after_first_response',
'timeout_on_sleeping_server', 'custom_metadata',
'status_code_and_message', 'unimplemented_method',
- 'large_compressed_unary', 'server_compressed_streaming']
+ 'client_compressed_unary', 'server_compressed_unary',
+ 'client_compressed_streaming', 'server_compressed_streaming']
_AUTH_TEST_CASES = ['compute_engine_creds', 'jwt_token_creds',
'oauth2_auth_token', 'per_rpc_creds']