BUILD.bazel 547 B

1234567891011121314151617
  1. package(default_visibility = ["//visibility:public"])
  2. load("//bazel:python_rules.bzl", "py2and3_test")
  3. py2and3_test(
  4. name = "channelz_servicer_test",
  5. size = "small",
  6. srcs = ["_channelz_servicer_test.py"],
  7. imports = ["../../"],
  8. main = "_channelz_servicer_test.py",
  9. deps = [
  10. "//src/python/grpcio/grpc:grpcio",
  11. "//src/python/grpcio_channelz/grpc_channelz/v1:grpc_channelz",
  12. "//src/python/grpcio_tests/tests/unit:test_common",
  13. "//src/python/grpcio_tests/tests/unit/framework/common",
  14. ],
  15. )