blob: 5f6911b8146e7cc967aeb74c058efbad74c60212 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Default configuration as used by Mozmill CI (Jenkins)
config = {
# Tests run in mozmill-ci do not use RelEng infra
'developer_mode': True,
# PIP
'find_links': ['http://pypi.pub.build.mozilla.org/pub'],
'pip_index': False,
# mozcrash support
'download_minidump_stackwalk': True,
'download_symbols': 'ondemand',
'download_tooltool': True,
# Disable proxxy because it isn't present in the QA environment.
'proxxy': {},
}
|