From 326bfa618a86c9fd604b8b98be6baff46337b6c6 Mon Sep 17 00:00:00 2001 From: Justin Lebar Date: Wed, 21 Mar 2018 09:20:28 -0700 Subject: [PATCH] Don't run tensorflow/python:function_test under fastbuild. It gets flaky timeouts. PiperOrigin-RevId: 189918276 --- tensorflow/python/BUILD | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tensorflow/python/BUILD b/tensorflow/python/BUILD index 11195b3..d11ee6f 100644 --- a/tensorflow/python/BUILD +++ b/tensorflow/python/BUILD @@ -1034,7 +1034,10 @@ cuda_py_tests( "//tensorflow/core:protos_all_py", ], shard_count = 10, - tags = ["noasan"], + tags = [ + "noasan", + "optonly", + ], ) py_test( -- 2.7.4