From 992b3aea8aaaa1285ed74f0ff3e3843765d1e197 Mon Sep 17 00:00:00 2001 From: Sourabh Singh Date: Fri, 27 Sep 2024 08:41:13 -0700 Subject: [PATCH] remove logging_threshold tests (#37806) Closes #37806 COPYBARA_INTEGRATE_REVIEW=https://github.com/grpc/grpc/pull/37806 from sourabhsinghs:unittest/logging-threshold d501d38dc0c487fe2019fd4b0db6b61d831df45f PiperOrigin-RevId: 679604228 --- bazel/internal_python_rules.bzl | 3 --- 1 file changed, 3 deletions(-) diff --git a/bazel/internal_python_rules.bzl b/bazel/internal_python_rules.bzl index a6c4e18ef81..b2a506c6ae4 100644 --- a/bazel/internal_python_rules.bzl +++ b/bazel/internal_python_rules.bzl @@ -14,7 +14,6 @@ """Python-related rules intended only for use internal to the repo.""" load("//bazel:gevent_test.bzl", "py_grpc_gevent_test") -load("//bazel:logging_threshold_test.bzl", "py_grpc_logging_threshold_test") def internal_py_grpc_test(name, **kwargs): """Runs a test under all supported environments. @@ -29,7 +28,6 @@ def internal_py_grpc_test(name, **kwargs): **kwargs ) py_grpc_gevent_test(name, **kwargs) - py_grpc_logging_threshold_test(name, **kwargs) suite_kwargs = {} if "visibility" in kwargs: @@ -40,7 +38,6 @@ def internal_py_grpc_test(name, **kwargs): tests = [ name + ".native", name + ".gevent", - name + ".logging_threshold", ], **suite_kwargs )