windows_config.py (1144B)
1 # This Source Code Form is subject to the terms of the Mozilla Public 2 # License, v. 2.0. If a copy of the MPL was not distributed with this 3 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 5 # This is a template config file for marionette production on Windows. 6 config = { 7 # marionette options 8 "marionette_address": "localhost:2828", 9 "test_manifest": "unit-tests.toml", 10 "virtualenv_path": "venv", 11 "exes": { 12 "python": "c:/mozilla-build/python27/python", 13 "hg": "c:/mozilla-build/hg/hg", 14 }, 15 "default_actions": [ 16 "clobber", 17 "download-and-extract", 18 "create-virtualenv", 19 "install", 20 "run-tests", 21 ], 22 "suite_definitions": { 23 "marionette_desktop": { 24 "options": [ 25 "-vv", 26 "--log-errorsummary=%(error_summary_file)s", 27 "--log-html=%(html_report_file)s", 28 "--binary=%(binary)s", 29 "--address=%(address)s", 30 "--symbols-path=%(symbols_path)s", 31 ], 32 "run_filename": "", 33 "testsdir": "marionette", 34 }, 35 }, 36 }