diff options
author | Noah Eisen <ncteisen@gmail.com> | 2016-11-23 19:39:04 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-23 19:39:04 -0800 |
commit | 5ac82e2ba805538b390883dda15c42feb1338c40 (patch) | |
tree | bab7380930354d8e472ee7c64737b0d72e804641 | |
parent | 6ff81e91c9577a52252460fb029fbbf990cfc7b6 (diff) | |
parent | f2764bf4628557cae5914203a2eda74bc9a569e9 (diff) |
Merge pull request #8846 from ncteisen/go_advanced_interop
Run Go Advanced Interop
-rwxr-xr-x | tools/run_tests/run_interop_tests.py | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/tools/run_tests/run_interop_tests.py b/tools/run_tests/run_interop_tests.py index 6a01bc23c4..83cfc429f9 100755 --- a/tools/run_tests/run_interop_tests.py +++ b/tools/run_tests/run_interop_tests.py @@ -64,11 +64,10 @@ _SKIP_SERVER_COMPRESSION = ['server_compressed_unary', _SKIP_COMPRESSION = _SKIP_CLIENT_COMPRESSION + _SKIP_SERVER_COMPRESSION -_SKIP_ADVANCED_GO = ['custom_metadata', - 'unimplemented_method', - 'unimplemented_service'] - -_SKIP_ADVANCED = _SKIP_ADVANCED_GO + ['status_code_and_message'] +_SKIP_ADVANCED = ['status_code_and_message', + 'custom_metadata', + 'unimplemented_method', + 'unimplemented_service'] _TEST_TIMEOUT = 3*60 @@ -209,10 +208,10 @@ class GoLanguage: return {} def unimplemented_test_cases(self): - return _SKIP_ADVANCED_GO + _SKIP_COMPRESSION + return _SKIP_COMPRESSION def unimplemented_test_cases_server(self): - return _SKIP_ADVANCED_GO + _SKIP_COMPRESSION + return _SKIP_COMPRESSION def __str__(self): return 'go' |