Bug 1591466 - do not adjust tier and optimization for mobile. r=sparky

do not adjust tier and optimization for mobile.

Differential Revision: https://phabricator.services.mozilla.com/D79279
This commit is contained in:
Joel Maher 2020-06-11 14:38:01 +00:00
parent 7eccf8abfa
commit f16377e4f4

View File

@ -359,6 +359,10 @@ def add_extra_options(config, tests):
@transforms.add
def apply_tier_optimization(config, tests):
for test in tests:
if test['test-platform'].startswith('android-hw'):
yield test
continue
test['optimization'] = {'push-interval-10': None}
if test['tier'] > 1:
test['optimization'] = {'push-interval-25': None}