aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio_tests/tests/channelz/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'src/python/grpcio_tests/tests/channelz/BUILD.bazel')
-rw-r--r--src/python/grpcio_tests/tests/channelz/BUILD.bazel15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/python/grpcio_tests/tests/channelz/BUILD.bazel b/src/python/grpcio_tests/tests/channelz/BUILD.bazel
new file mode 100644
index 0000000000..63513616e7
--- /dev/null
+++ b/src/python/grpcio_tests/tests/channelz/BUILD.bazel
@@ -0,0 +1,15 @@
+package(default_visibility = ["//visibility:public"])
+
+py_test(
+ name = "channelz_servicer_test",
+ srcs = ["_channelz_servicer_test.py"],
+ main = "_channelz_servicer_test.py",
+ size = "small",
+ deps = [
+ "//src/python/grpcio/grpc:grpcio",
+ "//src/python/grpcio_channelz/grpc_channelz/v1:grpc_channelz",
+ "//src/python/grpcio_tests/tests/unit:test_common",
+ "//src/python/grpcio_tests/tests/unit/framework/common:common",
+ ],
+ imports = ["../../",],
+)