tor-browser

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

android_hw.py (855B)


      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 # mozharness configuration for Android hardware unit tests
      6 #
      7 # This configuration should be combined with suite definitions and other
      8 # mozharness configuration from android_common.py, or similar.
      9 
     10 config = {
     11    "exes": {},
     12    "env": {
     13        "DISPLAY": ":0.0",
     14        "PATH": "%(PATH)s",
     15    },
     16    "default_actions": [
     17        "clobber",
     18        "download-and-extract",
     19        "create-virtualenv",
     20        "verify-device",
     21        "install",
     22        "run-tests",
     23    ],
     24    "tooltool_cache": "/builds/tooltool_cache",
     25    # from android_common.py
     26    "download_tooltool": True,
     27    "xpcshell_extra": "--remoteTestRoot=/data/local/tmp/test_root",
     28 }