tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

test_config_windows.py (923B)


      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 file,
      3 # You can obtain one at http://mozilla.org/MPL/2.0/.
      4 
      5 import sys
      6 
      7 config = {
      8    "options": [
      9        "--prefs-root=%(test_path)s\\prefs",
     10        "--config=%(test_path)s\\wptrunner.ini",
     11        "--ca-cert-path=%(test_path)s\\tests\\tools\\certs\\cacert.pem",
     12        "--host-key-path=%(test_path)s\\tests\\tools\\certs\\web-platform.test.key",
     13        "--host-cert-path=%(test_path)s\\tests\\tools\\certs\\web-platform.test.pem",
     14        "--certutil-binary=%(test_install_path)s\\bin\\certutil.exe",
     15    ],
     16    "exes": {
     17        "python": sys.executable,
     18        "hg": "c:\\mozilla-build\\hg\\hg",
     19    },
     20    "default_actions": [
     21        "clobber",
     22        "download-and-extract",
     23        "create-virtualenv",
     24        "pull",
     25        "install",
     26        "run-tests",
     27    ],
     28 }