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