fune/tools/tryselect/selectors/empty.py
Tom Prince 225b100443 Bug 1562287: Factor out generation of try_task_config; r=ahal
Factor out the logic for calculating `try_task_config` from `push_to_try`,
so it can be called only for those selectors that need it.

Differential Revision: https://phabricator.services.mozilla.com/D36363

--HG--
extra : moz-landing-system : lando
2019-07-04 06:25:11 +00:00

20 lines
774 B
Python

# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
from __future__ import absolute_import, print_function, unicode_literals
from ..cli import BaseTryParser
from ..push import push_to_try, generate_try_task_config
class EmptyParser(BaseTryParser):
name = 'empty'
common_groups = ['push']
def run(message='{msg}', push=True, closed_tree=False):
msg = 'No try selector specified, use "Add New Jobs" to select tasks.'
return push_to_try('empty', message.format(msg=msg),
try_task_config=generate_try_task_config('empty', []),
push=push, closed_tree=closed_tree)