Disable internally failing array_ops test.
authorMichael Case <mikecase@google.com>
Thu, 8 Feb 2018 00:26:55 +0000 (16:26 -0800)
committerTensorFlower Gardener <gardener@tensorflow.org>
Thu, 8 Feb 2018 00:35:13 +0000 (16:35 -0800)
PiperOrigin-RevId: 184915141

tensorflow/python/kernel_tests/array_ops_test.py

index 7ec4624..1e2ea82 100644 (file)
@@ -18,6 +18,7 @@ from __future__ import division
 from __future__ import print_function
 
 import time
+import unittest
 
 import numpy as np
 
@@ -1164,6 +1165,8 @@ class InvertPermutationTest(test_util.TensorFlowTestCase):
 
 class UnravelIndexTest(test_util.TensorFlowTestCase):
 
+  # TODO(b/73086570): Reenable test.
+  @unittest.skip("Test does not pass internally.")
   def testUnravelIndex(self):
     with self.test_session():
       for dtype in [dtypes.int32, dtypes.int64]: