|
|
|
@ -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 |
|
|
|
|
) |
|
|
|
|