mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
892 B
36 lines
892 B
3 years ago
|
# begin:github_only
|
||
|
|
||
|
def pyproto_test_wrapper(name):
|
||
|
src = name + "_wrapper.py"
|
||
|
native.py_test(
|
||
|
name = name,
|
||
|
srcs = [src],
|
||
|
legacy_create_init = False,
|
||
|
main = src,
|
||
|
data = ["@com_google_protobuf//:testdata"],
|
||
|
deps = [
|
||
|
"//python:message_ext",
|
||
|
"@com_google_protobuf//:python_common_test_protos",
|
||
|
"@com_google_protobuf//:python_specific_test_protos",
|
||
|
"@com_google_protobuf//:python_srcs",
|
||
|
],
|
||
|
)
|
||
|
|
||
|
# end:github_only
|
||
|
|
||
|
# begin:google_only
|
||
|
#
|
||
|
# def pyproto_test_wrapper(name):
|
||
|
# src = name + "_wrapper.py"
|
||
|
# native.py_test(
|
||
|
# name = name,
|
||
|
# srcs = [src],
|
||
|
# main = src,
|
||
|
# deps = [
|
||
|
# "//net/proto2/python/internal:" + name + "_for_deps",
|
||
|
# "//net/proto2/python/public:use_upb_protos",
|
||
|
# ],
|
||
|
# )
|
||
|
#
|
||
|
# end:google_only
|