mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 22:01:30 +00:00
1ec6a60b5b
The motivation for this change is to create a 'rebuild' template that sets 'attributes.task_duplicates'. A nice side effect is that if any of 'task' or 'attributes' aren't explicitly set, we can ignore the result which means we don't need to have a whole bunch of 'else' clauses in the templates. MozReview-Commit-ID: DX3UyFGb4ff --HG-- extra : rebase_source : b768cb9f9df3cb22827209519f1cd2a4944af74f
31 lines
954 B
Python
31 lines
954 B
Python
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
# vim: set filetype=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/.
|
|
|
|
with Files('**'):
|
|
BUG_COMPONENT = ('Taskcluster', 'General')
|
|
|
|
with Files('ci/**'):
|
|
BUG_COMPONENT = ('Taskcluster', 'Task Configuration')
|
|
|
|
with Files('docker/**'):
|
|
BUG_COMPONENT = ('Taskcluster', 'Docker Images')
|
|
|
|
with Files('docs/**'):
|
|
BUG_COMPONENT = ('Taskcluster', 'Documentation')
|
|
|
|
#NOTE: scripts/* files included in docker images
|
|
with Files('scripts/**'):
|
|
BUG_COMPONENT = ('Taskcluster', 'Docker Images')
|
|
|
|
with Files('taskgraph/**'):
|
|
BUG_COMPONENT = ('Taskcluster', 'Task Configuration')
|
|
|
|
PYTHON_UNITTEST_MANIFESTS += [
|
|
'taskgraph/test/python.ini',
|
|
]
|
|
SPHINX_TREES['taskcluster'] = 'docs'
|
|
SPHINX_PYTHON_PACKAGE_DIRS += ['taskgraph']
|