Bug 1413928 - [tryselect] Create a new argument group for 'task' arguments r=maja_zf

This simply groups arguments related to generating the list of
tasks from taskgraph into their own argument group.

MozReview-Commit-ID: IHRXXi5mB4G
This commit is contained in:
Andrew Halberstadt
2017-11-02 16:03:38 -04:00
parent f69f31d902
commit 304b34ac7f
2 changed files with 14 additions and 11 deletions

View File

@@ -58,6 +58,19 @@ COMMON_ARGUMENT_GROUPS = {
'help': 'Edit the preset file.',
}],
],
'task': [
[['--full'],
{'action': 'store_true',
'default': False,
'help': "Use the full set of tasks as input to fzf (instead of "
"target tasks).",
}],
[['-p', '--parameters'],
{'default': None,
'help': "Use the given parameters.yml to generate tasks, "
"defaults to latest parameters.yml from mozilla-central",
}],
],
}