2016-07-14 16:16:42 +00:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2016-03-18 17:54:07 +00:00
|
|
|
# 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/.
|
|
|
|
|
2017-04-05 12:31:05 +00:00
|
|
|
with Files("**"):
|
|
|
|
BUG_COMPONENT = ("Core", "General")
|
|
|
|
|
2017-07-21 17:34:19 +00:00
|
|
|
with Files("code-coverage/**"):
|
|
|
|
BUG_COMPONENT = ("Testing", "Code Coverage")
|
|
|
|
|
2017-06-06 14:00:51 +00:00
|
|
|
with Files("compare-locales/docs/**"):
|
|
|
|
BUG_COMPONENT = ('Mozilla Localizations', 'Documentation')
|
|
|
|
|
|
|
|
with Files("compare-locales/mach_commands.py"):
|
|
|
|
BUG_COMPONENT = ("Localization Infrastructure and Tools", "compare-locales")
|
|
|
|
|
2017-04-05 12:31:05 +00:00
|
|
|
with Files("coverity/**"):
|
|
|
|
BUG_COMPONENT = ("Core", "Rewriting and Analysis")
|
|
|
|
|
|
|
|
with Files("docs/**"):
|
2018-03-14 20:44:46 +00:00
|
|
|
BUG_COMPONENT = ("Firefox Build System", "Generated Documentation")
|
2017-10-02 18:22:56 +00:00
|
|
|
SCHEDULES.exclusive = ['docs']
|
2017-04-05 12:31:05 +00:00
|
|
|
|
|
|
|
with Files("lint/**"):
|
|
|
|
BUG_COMPONENT = ("Testing", "Lint")
|
|
|
|
|
|
|
|
with Files("profiler/**"):
|
|
|
|
BUG_COMPONENT = ("Core", "Gecko Profiler")
|
|
|
|
|
|
|
|
with Files("quitter/**"):
|
|
|
|
BUG_COMPONENT = ("Testing", "General")
|
|
|
|
|
|
|
|
with Files("rb/**"):
|
|
|
|
BUG_COMPONENT = ("Core", "XPCOM")
|
|
|
|
|
|
|
|
with Files("rewriting/**"):
|
|
|
|
BUG_COMPONENT = ("Core", "Rewriting and Analysis")
|
|
|
|
|
2017-07-18 01:36:23 +00:00
|
|
|
with Files("tryselect/**"):
|
|
|
|
BUG_COMPONENT = ("Testing", "General")
|
|
|
|
|
2018-10-16 23:04:03 +00:00
|
|
|
with Files("tryselect/selectors/release.py"):
|
|
|
|
BUG_COMPONENT = ("Release Engineering", "General")
|
|
|
|
|
2017-04-05 12:31:05 +00:00
|
|
|
with Files("update-packaging/**"):
|
|
|
|
BUG_COMPONENT = ("Release Engineering", "Other")
|
|
|
|
|
2018-12-03 06:44:16 +00:00
|
|
|
with Files("update-verify/**"):
|
|
|
|
BUG_COMPONENT = ("Release Engineering", "Release Automation: Updates")
|
|
|
|
|
2016-03-18 17:54:07 +00:00
|
|
|
SPHINX_TREES['lint'] = 'lint/docs'
|
2017-10-02 18:22:56 +00:00
|
|
|
|
|
|
|
with Files('lint/docs/**'):
|
|
|
|
SCHEDULES.exclusive = ['docs']
|
|
|
|
|
2017-06-06 14:00:51 +00:00
|
|
|
SPHINX_TREES['compare-locales'] = 'compare-locales/docs'
|
2017-10-02 18:22:56 +00:00
|
|
|
|
|
|
|
with Files('compare-locales/docs/**'):
|
|
|
|
SCHEDULES.exclusive = ['docs']
|
|
|
|
|
2017-11-07 21:26:14 +00:00
|
|
|
SPHINX_TREES['try'] = 'tryselect/docs'
|
2017-08-21 15:52:28 +00:00
|
|
|
|
2017-10-02 18:22:56 +00:00
|
|
|
with Files('tryselect/docs/**'):
|
|
|
|
SCHEDULES.exclusive = ['docs']
|
|
|
|
|
2017-08-21 15:52:28 +00:00
|
|
|
CRAMTEST_MANIFESTS += [
|
|
|
|
'tryselect/test/cram.ini',
|
|
|
|
]
|
2017-11-21 15:11:00 +00:00
|
|
|
|
|
|
|
PYTHON_UNITTEST_MANIFESTS += [
|
2018-03-22 21:24:15 +00:00
|
|
|
'lint/test/python.ini',
|
2018-09-21 12:50:32 +00:00
|
|
|
'rb/python.ini',
|
2017-11-21 15:11:00 +00:00
|
|
|
'tryselect/test/python.ini',
|
|
|
|
]
|