bazel target

pull/18095/head
Eric Gribkoff 6 years ago
parent a5c96cf765
commit 77f325a9af
  1. 2
      src/python/grpcio_tests/tests/health_check/_health_servicer_test.py
  2. 12
      src/python/grpcio_tests/tests/unit/BUILD.bazel
  3. 2
      src/python/grpcio_tests/tests/unit/_channel_connectivity_test.py
  4. 2
      src/python/grpcio_tests/tests/unit/_channel_ready_future_test.py
  5. 0
      src/python/grpcio_tests/tests/unit/thread_pool.py

@ -23,7 +23,7 @@ from grpc_health.v1 import health_pb2
from grpc_health.v1 import health_pb2_grpc
from tests.unit import test_common
from tests.unit import _thread_pool
from tests.unit import thread_pool
from tests.unit.framework.common import test_constants
from six.moves import queue

@ -46,6 +46,11 @@ py_library(
srcs = ["test_common.py"],
)
py_library(
name = "thread_pool",
srcs = ["thread_pool.py"],
)
py_library(
name = "_exit_scenarios",
srcs = ["_exit_scenarios.py"],
@ -56,11 +61,6 @@ py_library(
srcs = ["_server_shutdown_scenarios.py"],
)
py_library(
name = "_thread_pool",
srcs = ["_thread_pool.py"],
)
py_library(
name = "_from_grpc_import_star",
srcs = ["_from_grpc_import_star.py"],
@ -76,9 +76,9 @@ py_library(
"//src/python/grpcio/grpc:grpcio",
":resources",
":test_common",
":thread_pool",
":_exit_scenarios",
":_server_shutdown_scenarios",
":_thread_pool",
":_from_grpc_import_star",
"//src/python/grpcio_tests/tests/unit/framework/common",
"//src/python/grpcio_tests/tests/testing",

@ -20,7 +20,7 @@ import unittest
import grpc
from tests.unit.framework.common import test_constants
from tests.unit import _thread_pool
from tests.unit import thread_pool
def _ready_in_connectivities(connectivities):

@ -19,7 +19,7 @@ import logging
import grpc
from tests.unit.framework.common import test_constants
from tests.unit import _thread_pool
from tests.unit import thread_pool
class _Callback(object):

Loading…
Cancel
Save