Disabling a single test that causes function_test to not run on GPU instead of disabling the entire suite.

PiperOrigin-RevId: 330511187
Change-Id: I8428bf2fdc6f25d59361a7f5bd078d98462bf127
This commit is contained in:
Rohan Jain 2020-09-08 08:12:01 -07:00 committed by TensorFlower Gardener
parent 990e900053
commit ba05d4b289
2 changed files with 2 additions and 2 deletions

View File

@ -452,7 +452,6 @@ cuda_py_test(
python_version = "PY3",
shard_count = 15,
tags = [
"nogpu", # TODO(b/162544929): segfault
"nomac", # b/157056289
],
deps = [

View File

@ -3364,7 +3364,8 @@ class FunctionTest(test.TestCase, parameterized.TestCase):
with self.assertRaises(errors.CancelledError):
cancelable_func()
def testCancelBlockedFunctionExecution(self):
# TODO(b/162544929): Enable this test.
def DISABLE_testCancelBlockedFunctionExecution(self):
if not context.executing_eagerly():
self.skipTest('eager only')