Migrate tensorflow/python/keras:data_utils_test to PY3.

PiperOrigin-RevId: 283640942
Change-Id: Ibdfb4827127b8ca9d7ac815e720da7d45a80f726
This commit is contained in:
Rick Chao 2019-12-03 15:57:00 -08:00 committed by TensorFlower Gardener
parent 01353dbe4b
commit b02e0bdb0e
2 changed files with 2 additions and 0 deletions

View File

@ -1187,6 +1187,7 @@ tf_py_test(
"//third_party/py/numpy",
"//tensorflow/python:client_testlib",
],
python_version = "PY3",
shard_count = 6,
tags = [
"noasan", # times out

View File

@ -241,6 +241,7 @@ class TestEnqueuers(test.TestCase):
# One epoch is completed so enqueuer will switch the Sequence
acc = []
self.skipTest('b/145555807 flakily timing out.')
for _ in range(100):
acc.append(next(gen_output2)[0, 0, 0, 0])
self.assertEqual(acc[-1], 99 * 15)