File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 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/**" ,
You can’t perform that action at this time.
0 commit comments