From 797ac7bf875ac1924fd7c8e27acb7fc74c091b7c Mon Sep 17 00:00:00 2001 From: Amit Patankar Date: Thu, 7 May 2020 16:45:04 -0700 Subject: [PATCH] Disable a test from sanitizers. PiperOrigin-RevId: 310461926 Change-Id: I744cd0fd8d3b47e1ef4445b3ff9bd48ea7ff76fe --- tensorflow/python/keras/distribute/BUILD | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tensorflow/python/keras/distribute/BUILD b/tensorflow/python/keras/distribute/BUILD index a7b1caa3b02..87625446e2f 100644 --- a/tensorflow/python/keras/distribute/BUILD +++ b/tensorflow/python/keras/distribute/BUILD @@ -430,6 +430,11 @@ py_test( srcs = ["multi_worker_tutorial_test.py"], python_version = "PY3", shard_count = 5, + tags = [ + "noasan", + "nomsan", + "notsan", + ], # TODO(b/156029134) deps = [ "//tensorflow/python:platform", "//tensorflow/python/data/ops:dataset_ops",