Skip to content

Commit 9d4c999

Browse files
committed
Skip gRPC client tests
1 parent fe48c3b commit 9d4c999

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

conformance/test/test_client.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,22 @@
1212
_client_py_path = str(_current_dir / "client.py")
1313
_config_path = str(_current_dir / "config.yaml")
1414

15+
_skipped_tests = [
16+
# Not implemented yet,
17+
"--skip",
18+
"**/Protocol:PROTOCOL_GRPC/**",
19+
"--skip",
20+
"gRPC Trailers/**",
21+
"--skip",
22+
"gRPC Unexpected Responses/**",
23+
"--skip",
24+
"gRPC Empty Responses/**",
25+
"--skip",
26+
"gRPC Proto Sub-Format Responses/**",
27+
]
1528

1629
_skipped_tests_sync = [
30+
*_skipped_tests,
1731
# Need to use async APIs for proper cancellation support in Python.
1832
"--skip",
1933
"Client Cancellation/**",
@@ -46,6 +60,7 @@ def test_client_sync() -> None:
4660

4761

4862
_skipped_tests_async = [
63+
*_skipped_tests,
4964
# Cancellation currently not working for full duplex
5065
"--skip",
5166
"Client Cancellation/**/full-duplex/**",

0 commit comments

Comments
 (0)