From 843f3da02df95e95593af625091646e3ed49b8d6 Mon Sep 17 00:00:00 2001 From: Gaurav Jain Date: Tue, 12 May 2020 23:26:08 -0700 Subject: [PATCH] Disable flaky test PiperOrigin-RevId: 311272834 Change-Id: Id8af3ac197f65dde4ae50c9b5ad63d2d328652f6 --- tensorflow/python/ops/parallel_for/control_flow_ops_test.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tensorflow/python/ops/parallel_for/control_flow_ops_test.py b/tensorflow/python/ops/parallel_for/control_flow_ops_test.py index 11380b2dac2..01776808525 100644 --- a/tensorflow/python/ops/parallel_for/control_flow_ops_test.py +++ b/tensorflow/python/ops/parallel_for/control_flow_ops_test.py @@ -1400,6 +1400,8 @@ class StatelessIfTest(PForTestCase): class IfTest(PForTestCase): def test_read_var(self): + self.skipTest("b/156438918") # Flaky + x = [1, 2, 3, 4, 5.] y = 2.5 z = resource_variable_ops.ResourceVariable(5.)