blob: cfc06ded243bd5249206082ad8bb1388fa220ea5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
with Files("**"):
BUG_COMPONENT = ("Testing", "General")
with Files("*cppunittest*"):
BUG_COMPONENT = ("Testing", "CPPUnitTest")
SCHEDULES.exclusive = ["cppunittest"]
with Files("remote*"):
BUG_COMPONENT = ("GeckoView", "General")
PYTHON_UNITTEST_MANIFESTS += ["test/python.toml"]
SPHINX_TREES["/testing"] = "docs"
DIRS += ["mozbase"]
PERFTESTS_MANIFESTS += [
"performance/perftest.toml",
]
|