1package(default_visibility = ["//visibility:public"]) 2 3load("//bazel:python_rules.bzl", "py2and3_test") 4 5py2and3_test( 6 name = "health_servicer_test", 7 size = "small", 8 srcs = ["_health_servicer_test.py"], 9 imports = ["../../"], 10 main = "_health_servicer_test.py", 11 deps = [ 12 "//src/python/grpcio/grpc:grpcio", 13 "//src/python/grpcio_health_checking/grpc_health/v1:grpc_health", 14 "//src/python/grpcio_tests/tests/unit:test_common", 15 "//src/python/grpcio_tests/tests/unit:thread_pool", 16 "//src/python/grpcio_tests/tests/unit/framework/common", 17 ], 18) 19