Disable few tests in pip builds.
PiperOrigin-RevId: 247037710
This commit is contained in:
parent
82aaef8e52
commit
c99a4a8610
@ -69,7 +69,10 @@ py_test(
|
||||
size = "small",
|
||||
srcs = ["zero_out_1_test.py"],
|
||||
srcs_version = "PY2AND3",
|
||||
tags = ["notap"],
|
||||
tags = [
|
||||
"no_pip",
|
||||
"notap",
|
||||
],
|
||||
deps = [
|
||||
":zero_out_op_1",
|
||||
"//tensorflow:tensorflow_py",
|
||||
@ -81,7 +84,10 @@ py_test(
|
||||
size = "small",
|
||||
srcs = ["zero_out_2_test.py"],
|
||||
srcs_version = "PY2AND3",
|
||||
tags = ["notap"],
|
||||
tags = [
|
||||
"no_pip",
|
||||
"notap",
|
||||
],
|
||||
deps = [
|
||||
":zero_out_grad_2",
|
||||
":zero_out_op_2",
|
||||
@ -94,7 +100,10 @@ py_test(
|
||||
size = "small",
|
||||
srcs = ["zero_out_3_test.py"],
|
||||
srcs_version = "PY2AND3",
|
||||
tags = ["notap"],
|
||||
tags = [
|
||||
"no_pip",
|
||||
"notap",
|
||||
],
|
||||
deps = [
|
||||
":zero_out_op_3",
|
||||
"//tensorflow:tensorflow_py",
|
||||
@ -121,7 +130,10 @@ py_test(
|
||||
srcs = ["cuda_op_test.py"],
|
||||
exec_compatible_with = tf_exec_compatible_with({"tags": tf_cuda_tests_tags()}),
|
||||
srcs_version = "PY2AND3",
|
||||
tags = tf_cuda_tests_tags() + ["notap"],
|
||||
tags = tf_cuda_tests_tags() + [
|
||||
"notap",
|
||||
"no_pip",
|
||||
],
|
||||
deps = [
|
||||
":cuda_op",
|
||||
"//tensorflow:tensorflow_py",
|
||||
|
@ -1,5 +1,10 @@
|
||||
# TensorFlow API backwards compatibility tests.
|
||||
|
||||
load(
|
||||
"//tensorflow:tensorflow.bzl",
|
||||
"py_test",
|
||||
)
|
||||
|
||||
package(
|
||||
default_visibility = ["//tensorflow/tools/api:__subpackages__"],
|
||||
)
|
||||
|
@ -2,6 +2,7 @@ load(
|
||||
"//tensorflow:tensorflow.bzl",
|
||||
"tf_copts", # @unused
|
||||
"tf_cc_test", # @unused
|
||||
"py_test",
|
||||
)
|
||||
|
||||
licenses(["notice"]) # Apache 2.0
|
||||
|
Loading…
Reference in New Issue
Block a user