Commit a30d6b8a authored by jbudorick's avatar jbudorick Committed by Commit bot

[Android] Enable @RetryOnFailure.

BUG=619055

Review-Url: https://codereview.chromium.org/2348693004
Cr-Commit-Position: refs/heads/master@{#419349}
parent 82c83893
...@@ -347,11 +347,10 @@ class LocalDeviceInstrumentationTestRun( ...@@ -347,11 +347,10 @@ class LocalDeviceInstrumentationTestRun(
if 'RetryOnFailure' in test.get('annotations', {}): if 'RetryOnFailure' in test.get('annotations', {}):
return True return True
# TODO(jbudorick): Remove this log message and switch the return value to # TODO(jbudorick): Remove this log message once @RetryOnFailure has been
# False after tests have been annotated with @RetryOnFailure. # enabled for a while. See crbug.com/619055 for more details.
# See crbug.com/619055 for more details. logging.error('Default retries are being phased out. crbug.com/619055')
logging.warning('Default retries are being phased out. crbug.com/619055') return False
return True
#override #override
def _ShouldShard(self): def _ShouldShard(self):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment