Disable async remote tests

PiperOrigin-RevId: 215276816
This commit is contained in:
Akshay Modi 2018-10-01 14:07:17 -07:00 committed by TensorFlower Gardener
parent ec900f15e3
commit 3aa8b781b3

View File

@ -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)