aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio_tests/tests/status/BUILD.bazel
blob: 937e50498e0e55661931c3cdde958764c1b48c17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
load("@grpc_python_dependencies//:requirements.bzl", "requirement")

package(default_visibility = ["//visibility:public"])

py_test(
    name = "grpc_status_test",
    srcs = ["_grpc_status_test.py"],
    main = "_grpc_status_test.py",
    size = "small",
    deps = [
        "//src/python/grpcio/grpc:grpcio",
        "//src/python/grpcio_status/grpc_status:grpc_status",
        "//src/python/grpcio_tests/tests/unit:test_common",
        "//src/python/grpcio_tests/tests/unit/framework/common:common",
        requirement('protobuf'),
        requirement('googleapis-common-protos'),
    ],
    imports = ["../../",],
)