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:
parent
990e900053
commit
ba05d4b289
@ -452,7 +452,6 @@ cuda_py_test(
|
||||
python_version = "PY3",
|
||||
shard_count = 15,
|
||||
tags = [
|
||||
"nogpu", # TODO(b/162544929): segfault
|
||||
"nomac", # b/157056289
|
||||
],
|
||||
deps = [
|
||||
|
@ -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')
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user