Disable tests in pip builds.

PiperOrigin-RevId: 246628151
This commit is contained in:
A. Unique TensorFlower 2019-05-03 23:58:12 -07:00 committed by TensorFlower Gardener
parent 7e035d5e3d
commit 1baa281d3c

View File

@ -199,6 +199,9 @@ py_test(
name = "distribute_coordinator_test",
srcs = ["distribute_coordinator_test.py"],
srcs_version = "PY2AND3",
tags = [
"no_pip", # b/131691139
],
deps = [
":distribute_coordinator",
"//tensorflow/core:protos_all_py",
@ -700,6 +703,9 @@ cuda_py_test(
"//tensorflow/python/eager:test",
],
grpc_enabled = True,
tags = [
"no_pip", # b/131691139
],
)
py_library(
@ -799,6 +805,7 @@ distribute_py_test(
main = "minimize_loss_test.py",
tags = [
"multi_and_single_gpu",
"no_pip", # b/131691139
],
deps = [
":mirrored_strategy",
@ -851,6 +858,7 @@ distribute_py_test(
main = "step_fn_test.py",
tags = [
"multi_and_single_gpu",
"no_pip", # b/131691139
],
deps = [
":single_loss_example",
@ -910,6 +918,7 @@ cuda_py_test(
tags = [
"guitar",
"multi_and_single_gpu",
"no_pip", # b/131691139
"no_windows_gpu", # TODO(b/130551176)
],
)