Bug 1286075: remove old name for 'default' task set; r?Callek draft
authorDustin J. Mitchell <dustin@mozilla.com>
Fri, 09 Sep 2016 21:07:31 +0000
changeset 412764 f2529fc05013708bfb4040eb18bfae6c9030bfad
parent 412763 64fb29809bb5085d75687647835e76f8cf26943f
child 412765 66fe4ff47de8e843d4ab3b8a5bbb297b556233bc
push id29252
push userdmitchell@mozilla.com
push dateMon, 12 Sep 2016 19:16:39 +0000
reviewersCallek
bugs1286075
milestone51.0a1
Bug 1286075: remove old name for 'default' task set; r?Callek MozReview-Commit-ID: 3bRvQijMtda
taskcluster/taskgraph/target_tasks.py
--- a/taskcluster/taskgraph/target_tasks.py
+++ b/taskcluster/taskgraph/target_tasks.py
@@ -55,17 +55,16 @@ def target_tasks_try_option_syntax(full_
         for l in target_tasks_labels:
             task = full_task_graph[l]
             if 'unittest_suite' in task.attributes:
                 task.attributes['task_duplicates'] = options.trigger_tests
 
     return target_tasks_labels
 
 
-@_target_task('all_builds_and_tests')  # (old name)
 @_target_task('default')
 def target_tasks_default(full_task_graph, parameters):
     """Target the tasks which have indicated they should be run on this project
     via the `run_on_projects` attributes."""
     def filter(task):
         run_on_projects = set(t.attributes.get('run_on_projects', []))
         if 'all' in run_on_projects:
             return True