diff options
author | Naresh <ghostwriternr@gmail.com> | 2018-10-11 09:14:58 +0000 |
---|---|---|
committer | Nathaniel Manista <nathaniel@google.com> | 2018-11-01 12:01:02 +0000 |
commit | e4382abc9ca48493a5b45a02bc2172cca8739b2c (patch) | |
tree | 1deed32c86173ef95e7586cbc28e353e68f3c4d7 /src/python/grpcio_tests/tests/reflection | |
parent | d35a7c42dc908d240925151eb5236dcd77a381a4 (diff) |
Bazel rules for Python grpcio_reflection
Diffstat (limited to 'src/python/grpcio_tests/tests/reflection')
-rw-r--r-- | src/python/grpcio_tests/tests/reflection/BUILD.bazel | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/python/grpcio_tests/tests/reflection/BUILD.bazel b/src/python/grpcio_tests/tests/reflection/BUILD.bazel new file mode 100644 index 0000000000..c0efb0b7ce --- /dev/null +++ b/src/python/grpcio_tests/tests/reflection/BUILD.bazel @@ -0,0 +1,21 @@ +load("@grpc_python_dependencies//:requirements.bzl", "requirement") + +package(default_visibility = ["//visibility:public"]) + +py_test( + name="_reflection_servicer_test", + size="small", + timeout="moderate", + srcs=["_reflection_servicer_test.py",], + main="_reflection_servicer_test.py", + deps=[ + "//src/python/grpcio/grpc:grpcio", + "//src/python/grpcio_reflection/grpc_reflection/v1alpha:grpc_reflection", + "//src/python/grpcio_tests/tests/unit:test_common", + "//src/proto/grpc/testing:py_empty_proto", + "//src/proto/grpc/testing/proto2:empty2_extensions_proto", + requirement('protobuf'), + ], + imports=["../../",], +) + |