From ae2a447c9927ef031256992d74fa557d36342f54 Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Fri, 2 Aug 2019 12:48:02 -0700 Subject: [PATCH] Disable tests in pip builds PiperOrigin-RevId: 261373155 --- tensorflow/examples/tutorials/mnist/BUILD | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tensorflow/examples/tutorials/mnist/BUILD b/tensorflow/examples/tutorials/mnist/BUILD index 0473de11c76..264d0849256 100644 --- a/tensorflow/examples/tutorials/mnist/BUILD +++ b/tensorflow/examples/tutorials/mnist/BUILD @@ -109,6 +109,7 @@ tf_py_test( "--max_steps=10", ], main = "fully_connected_feed.py", + tags = ["no_pip"], ) tf_py_test( @@ -127,5 +128,8 @@ tf_py_test( "--learning_rate=0.00", ], main = "mnist_with_summaries.py", - tags = ["notsan"], # http://b/29184009 + tags = [ + "no_pip", + "notsan", # http://b/29184009 + ], )