aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/eager
diff options
context:
space:
mode:
authorGravatar Akshay Modi <nareshmodi@google.com>2018-10-01 14:07:17 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-10-01 14:14:50 -0700
commit3aa8b781b342c36302bd500737ab4ce9b2b87a45 (patch)
treea93029f91475b21fcbf17b030d77bd520198be26 /tensorflow/contrib/eager
parentec900f15e352e4b203b1f0678f7d2ff042df57d5 (diff)
Disable async remote tests
PiperOrigin-RevId: 215276816
Diffstat (limited to 'tensorflow/contrib/eager')
-rw-r--r--tensorflow/contrib/eager/python/remote_test.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tensorflow/contrib/eager/python/remote_test.py b/tensorflow/contrib/eager/python/remote_test.py
index ba6fe9701d..7aa4b598b8 100644
--- a/tensorflow/contrib/eager/python/remote_test.py
+++ b/tensorflow/contrib/eager/python/remote_test.py
@@ -47,8 +47,9 @@ def run_sync_and_async(f):
@functools.wraps(f)
def decorator(self, *args, **kwargs):
- with context.execution_mode(context.ASYNC):
- f(self, *args, **kwargs)
+ # TODO(b/117110239): Re-enable.
+ # with context.execution_mode(context.ASYNC):
+ # f(self, *args, **kwargs)
with context.execution_mode(context.SYNC):
f(self, *args, **kwargs)