2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 01:05:39 +04: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/.
|
|
|
|
|
2016-11-16 17:59:22 +03:00
|
|
|
PYTHON_UNITTEST_MANIFESTS += [
|
|
|
|
"manifestparser/tests/manifest.ini",
|
|
|
|
"mozcrash/tests/manifest.ini",
|
2017-10-26 17:14:33 +03:00
|
|
|
"mozdebug/tests/manifest.ini",
|
2018-09-18 22:35:40 +03:00
|
|
|
"mozdevice/tests/manifest.ini",
|
2016-11-16 17:59:22 +03:00
|
|
|
"mozfile/tests/manifest.ini",
|
2020-05-22 16:18:44 +03:00
|
|
|
"mozgeckoprofiler/tests/manifest.ini",
|
2016-11-16 17:59:22 +03:00
|
|
|
"mozhttpd/tests/manifest.ini",
|
|
|
|
"mozinfo/tests/manifest.ini",
|
|
|
|
"mozinstall/tests/manifest.ini",
|
2018-11-19 18:29:46 +03:00
|
|
|
"mozleak/tests/manifest.ini",
|
2016-11-16 17:59:22 +03:00
|
|
|
"mozlog/tests/manifest.ini",
|
|
|
|
"moznetwork/tests/manifest.ini",
|
2019-08-01 23:36:00 +03:00
|
|
|
"mozpower/tests/manifest.ini",
|
2016-11-16 17:59:22 +03:00
|
|
|
"mozprocess/tests/manifest.ini",
|
|
|
|
"mozprofile/tests/manifest.ini",
|
2019-03-06 20:13:21 +03:00
|
|
|
"mozproxy/tests/manifest.ini",
|
2016-11-16 17:59:22 +03:00
|
|
|
"mozrunner/tests/manifest.ini",
|
2019-03-25 16:49:38 +03:00
|
|
|
"mozsystemmonitor/tests/manifest.ini",
|
2016-11-16 17:59:22 +03:00
|
|
|
"moztest/tests/manifest.ini",
|
|
|
|
"mozversion/tests/manifest.ini",
|
2014-07-28 19:51:12 +04:00
|
|
|
]
|
2014-08-29 19:03:11 +04:00
|
|
|
|
|
|
|
python_modules = [
|
|
|
|
"manifestparser",
|
|
|
|
"mozcrash",
|
|
|
|
"mozdebug",
|
|
|
|
"mozdevice",
|
|
|
|
"mozfile",
|
2020-05-22 16:18:44 +03:00
|
|
|
"mozgeckoprofiler",
|
2016-02-10 13:04:50 +03:00
|
|
|
"mozhttpd",
|
2014-08-29 19:03:11 +04:00
|
|
|
"mozinfo",
|
|
|
|
"mozinstall",
|
2015-07-03 08:04:22 +03:00
|
|
|
"mozleak",
|
2014-08-29 19:03:11 +04:00
|
|
|
"mozlog",
|
|
|
|
"moznetwork",
|
2019-08-01 23:36:00 +03:00
|
|
|
"mozpower",
|
2014-08-29 19:03:11 +04:00
|
|
|
"mozprocess",
|
|
|
|
"mozprofile",
|
2019-03-06 20:13:21 +03:00
|
|
|
"mozproxy",
|
2014-08-29 19:03:11 +04:00
|
|
|
"mozrunner",
|
2015-07-29 18:50:16 +03:00
|
|
|
"mozscreenshot",
|
2014-08-29 19:03:11 +04:00
|
|
|
"mozsystemmonitor",
|
|
|
|
"moztest",
|
|
|
|
"mozversion",
|
|
|
|
]
|
|
|
|
|
|
|
|
TEST_HARNESS_FILES.mozbase += [m + "/**" for m in python_modules]
|
|
|
|
|
|
|
|
TEST_HARNESS_FILES.mozbase += [
|
|
|
|
"setup_development.py",
|
|
|
|
]
|
2016-12-31 00:16:56 +03:00
|
|
|
|
2017-11-20 20:12:06 +03:00
|
|
|
SPHINX_TREES["/mozbase"] = "docs"
|
|
|
|
|
2017-10-02 21:22:56 +03:00
|
|
|
with Files("docs/**"):
|
|
|
|
SCHEDULES.exclusive = ["docs"]
|
|
|
|
|
2016-12-31 00:16:56 +03:00
|
|
|
with Files("**"):
|
2017-06-15 19:10:59 +03:00
|
|
|
BUG_COMPONENT = ("Testing", "Mozbase")
|
2018-01-29 20:57:54 +03:00
|
|
|
|
|
|
|
with Files("rust/**"):
|
|
|
|
BUG_COMPONENT = ("Testing", "Mozbase Rust")
|