Skip to content
This repository has been archived by the owner on Aug 4, 2022. It is now read-only.

Commit

Permalink
Bug 1582881 - Promote select fission tests to tier 1; r=ahal
Browse files Browse the repository at this point in the history
This changes certain fission tests to run tier 1 and start running on integration branches:
  linux64-qr/debug mochitest-plain
  linux64-qr/debug mochitest-media
  linux64-qr/debug mochitest-webgl*
  linux64/debug browser-chrome
All other fission tests continue to run as tier 2.

Differential Revision: https://phabricator.services.mozilla.com/D47295
  • Loading branch information
gbrownmozilla committed Sep 27, 2019
1 parent 25582dd commit 87f55fc
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions taskcluster/taskgraph/transforms/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -1179,6 +1179,12 @@ def enable_fission_on_central(config, tests):

if not runs_on_central(test):
test['run-on-projects'].append('mozilla-central')

# Promote select fission tests to tier 1 and ensure they run on trunk
if platform == 'linux64' and btype == 'debug' and (test['webrender'] or
'mochitest-browser-chrome' in test['attributes']['unittest_suite']):
test['tier'] = 1
test['run-on-projects'] = ['ash', 'try', 'trunk']
yield test


Expand Down

0 comments on commit 87f55fc

Please sign in to comment.