aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/keras
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-07-13 17:23:32 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-07-13 17:27:57 -0700
commita2df786144cae1ffdf44d051b7fe8a12dabf8ccb (patch)
tree8c11077f8c788892234b54de587daaa7c9893524 /tensorflow/contrib/keras
parentc311449c76433be7ead189c0acc7202d2e884513 (diff)
Disable contrib tests on ASAN that are sometimes timing out.
PiperOrigin-RevId: 161890056
Diffstat (limited to 'tensorflow/contrib/keras')
-rw-r--r--tensorflow/contrib/keras/BUILD7
1 files changed, 6 insertions, 1 deletions
diff --git a/tensorflow/contrib/keras/BUILD b/tensorflow/contrib/keras/BUILD
index e48b18ff52..77358d1253 100644
--- a/tensorflow/contrib/keras/BUILD
+++ b/tensorflow/contrib/keras/BUILD
@@ -327,6 +327,7 @@ py_test(
size = "medium",
srcs = ["python/keras/layers/convolutional_recurrent_test.py"],
srcs_version = "PY2AND3",
+ tags = ["noasan"], # times out b/63678675
deps = [
":keras",
"//tensorflow/python:client_testlib",
@@ -341,6 +342,7 @@ py_test(
srcs_version = "PY2AND3",
tags = [
"manual",
+ "noasan", # times out b/63678675
"notsan",
],
deps = [
@@ -461,7 +463,10 @@ py_test(
size = "medium",
srcs = ["python/keras/layers/lstm_test.py"],
srcs_version = "PY2AND3",
- tags = ["notsan"], # http://b/62189182
+ tags = [
+ "noasan", # times out b/63678675
+ "notsan", # http://b/62189182
+ ],
deps = [
":keras",
"//tensorflow/python:client_testlib",