Bug 1384629: omit schema={} for run-missing-tests; r?bstack draft
authorDustin J. Mitchell <dustin@mozilla.com>
Wed, 26 Jul 2017 16:11:56 +0000
changeset 615958 73fa75eb7bb18a19bb6f9ed6aa91e59d2ccd5018
parent 615935 388d81ed93fa640f91d155f36254667c734157cf
child 639331 2a686c655a088f8ff1a9ea1481c6e86dcb6480f8
push id70537
push userdmitchell@mozilla.com
push dateWed, 26 Jul 2017 16:13:16 +0000
reviewersbstack
bugs1384629
milestone56.0a1
Bug 1384629: omit schema={} for run-missing-tests; r?bstack MozReview-Commit-ID: EtBqyvOzFs2
taskcluster/actions/run_missing_tests.py
--- a/taskcluster/actions/run_missing_tests.py
+++ b/taskcluster/actions/run_missing_tests.py
@@ -25,17 +25,16 @@ logger = logging.getLogger(__name__)
     description="""
     Run tests in the selected push that were optimized away, usually by SETA.
 
     This action is for use on pushes that will be merged into another branch,
     to check that optimization hasn't hidden any failures.
     """,
     order=100,  # Useful for sheriffs, but not top of the list
     context=[],  # Applies to any task
-    schema={},
 )
 def run_missing_tests(parameters, input, task_group_id, task_id, task):
     decision_task_id = find_decision_task(parameters)
 
     full_task_graph = get_artifact(decision_task_id, "public/full-task-graph.json")
     _, full_task_graph = TaskGraph.from_json(full_task_graph)
     target_tasks = get_artifact(decision_task_id, "public/target-tasks.json")
     label_to_taskid = get_artifact(decision_task_id, "public/label-to-taskid.json")