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',
|
|
|
|
'mozdevice/tests/manifest.ini',
|
|
|
|
'mozfile/tests/manifest.ini',
|
|
|
|
'mozhttpd/tests/manifest.ini',
|
|
|
|
'mozinfo/tests/manifest.ini',
|
|
|
|
'mozinstall/tests/manifest.ini',
|
|
|
|
'mozlog/tests/manifest.ini',
|
|
|
|
'moznetwork/tests/manifest.ini',
|
|
|
|
'mozprocess/tests/manifest.ini',
|
|
|
|
'mozprofile/tests/manifest.ini',
|
|
|
|
'mozrunner/tests/manifest.ini',
|
|
|
|
'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',
|
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',
|
|
|
|
'mozprocess',
|
|
|
|
'mozprofile',
|
|
|
|
'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
|
|
|
|
|
|
|
with Files('**'):
|
|
|
|
BUG_COMPONENT = ('Testing', 'Mozbase')
|