mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 13:51:41 +00:00
257aa1c23c
MozReview-Commit-ID: HK5MR8Xw3On --HG-- rename : taskcluster/actions/__init__.py => taskcluster/taskgraph/actions/__init__.py rename : taskcluster/actions/add-new-jobs.py => taskcluster/taskgraph/actions/add-new-jobs.py rename : taskcluster/actions/hello-action.py => taskcluster/taskgraph/actions/hello-action.py rename : taskcluster/actions/registry.py => taskcluster/taskgraph/actions/registry.py rename : taskcluster/actions/retrigger.py => taskcluster/taskgraph/actions/retrigger.py rename : taskcluster/actions/run_missing_tests.py => taskcluster/taskgraph/actions/run_missing_tests.py rename : taskcluster/actions/test-retrigger-action.py => taskcluster/taskgraph/actions/test-retrigger-action.py rename : taskcluster/actions/util.py => taskcluster/taskgraph/actions/util.py extra : source : 9368bd8045136706950cde7cf718fda5492499e8 extra : histedit_source : f52597f12cb247124ee6080241ac9c741fc53e49
30 lines
910 B
Python
30 lines
910 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'
|