aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio_tests/tests/unit/BUILD.bazel
Commit message (Collapse)AuthorAge
* Make gRPC version string available as grpc.__version__Gravatar Richard Belleville2018-12-27
|
* fix BUILD.bazelGravatar Eric Gribkoff2018-12-17
|
* Address comments, improve testsGravatar Eric Gribkoff2018-12-17
|
* New abort with grpc.Status APIGravatar Lidi Zheng2018-12-12
| | | | | | * Add `abort_with_status` method in ServicerContext * Add `Status` interface similar to the design of Details in interceptor * Add 3 unit test cases for abort mechanism
* Add failing unit testGravatar Richard Belleville2018-10-30
|
* Add Bazel targets for Python unit testsGravatar Naresh2018-10-03
There are exactly 50 tests under grpcio_tests/tests/testing and grpcio_tests/tests/unit for gRPC Python. Add Bazel targets for 44 of them. unit._reconnect_test has been left out for now due to an unexpected RuntimeError (#16336) and unit._server_ssl_cert_config_test because of changes needed to the import path within src/python/grpcio_tests/tests/testing/proto/services.proto (will possibly be included as a fix to #15370). The count of tests here is reported the way unittest counts tests, which is the number of individual unit test classes it sees. This will be different from Bazel's count, which counts the number of Bazel test targets, which (by convention mostly) is one per test module.