Bug 1253341: Disable duplicate talos jobs in AWS r=rail
authorChris AtLee <catlee@mozilla.com>
Fri, 01 Apr 2016 09:15:04 -0400 (2016-04-01)
changeset 14058 c06fa02837e998eae6fff8c00e5edd503c7f7b59
parent 14057 653739ef781d6f07273ebd21be56e5f7d4eb10b9
child 14059 fa3ae48d47237b6e2258747544810600f5012b0b
push id9873
push usercatlee@mozilla.com
push dateMon, 04 Apr 2016 17:05:39 +0000 (2016-04-04)
reviewersrail
bugs1253341
Bug 1253341: Disable duplicate talos jobs in AWS r=rail MozReview-Commit-ID: LfCx0fiFE2A
mozilla-tests/config.py
--- a/mozilla-tests/config.py
+++ b/mozilla-tests/config.py
@@ -3153,17 +3153,17 @@ delete_slave_platform(BRANCHES, PLATFORM
 for branch in set(BRANCHES.keys()) - set(win7_vm_inactive_branches):
     for platform in ('win32', 'win64'):
         if platform not in BRANCHES[branch]['platforms']:
             continue
         if nested_haskey(BRANCHES[branch]['platforms'], platform, 'win7-ix'):
             del BRANCHES[branch]['platforms'][platform]['win7-ix']
 
 # Bug 1253341 - run talos jobs on AWS
-for branch in ('try',):
+for branch in ():
     BRANCHES[branch]['platforms']['linux64']['talos_slave_platforms'] = ['ubuntu64_hw', 'ubuntu64_vm']
     # Add ubuntu64_vm to the talos suites
     for test, test_config in BRANCHES[branch].items():
         if not test.endswith('_tests'):
             continue
         tests, merge, extra, platforms = test_config
         if 'ubuntu64_hw' in platforms and 'ubuntu64_vm' not in platforms:
             platforms = platforms + ['ubuntu64_vm']