mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-19 14:57:32 +09:00
19 lines
469 B
Python
19 lines
469 B
Python
# 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': {},
|
|
}
|