tor-browser

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

test_config.py (782B)


      1 # This is a template config file for marionette test.
      2 
      3 config = {
      4    # marionette options
      5    "marionette_address": "localhost:2828",
      6    "test_manifest": "unit-tests.toml",
      7    "default_actions": [
      8        "clobber",
      9        "download-and-extract",
     10        "create-virtualenv",
     11        "install",
     12        "run-tests",
     13    ],
     14    "suite_definitions": {
     15        "marionette_desktop": {
     16            "options": [
     17                "-vv",
     18                "--log-errorsummary=%(error_summary_file)s",
     19                "--log-html=%(html_report_file)s",
     20                "--binary=%(binary)s",
     21                "--address=%(address)s",
     22                "--symbols-path=%(symbols_path)s",
     23            ],
     24            "run_filename": "",
     25            "testsdir": "marionette",
     26        },
     27    },
     28 }