tor-browser

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

commands.json (2224B)


      1 {
      2  "test-jobs": {
      3    "path": "jobs.py",
      4    "script": "run",
      5    "parser": "create_parser",
      6    "help": "List test jobs that should run for a set of commits",
      7    "virtualenv": false
      8  },
      9  "make-hosts-file": {
     10    "path": "make_hosts_file.py",
     11    "script": "run",
     12    "parser": "create_parser",
     13    "help": "Output a hosts file to stdout",
     14    "virtualenv": false
     15  },
     16  "macos-display-configuration": {
     17    "path": "macos_display_configuration.py",
     18    "script": "run",
     19    "parser": "create_parser",
     20    "help": "Configure macOS displays (scale, color profile)",
     21    "virtualenv": true,
     22    "requirements": [
     23      "requirements_macos_display_configuration.txt"
     24    ]
     25  },
     26  "regen-certs": {
     27    "path": "regen_certs.py",
     28    "script": "run",
     29    "parser": "get_parser",
     30    "help": "Regenerate the WPT certificates",
     31    "virtualenv": false
     32  },
     33  "update-built": {
     34    "path": "update_built.py",
     35    "script": "run",
     36    "parser": "get_parser",
     37    "help": "Update built tests",
     38    "virtualenv": true,
     39    "requirements": [
     40      "requirements_build.txt"
     41    ]
     42  },
     43  "tc-download": {
     44    "path": "tc/download.py",
     45    "script": "run",
     46    "parser": "get_parser",
     47    "parse_known": true,
     48    "help": "Download logs from taskcluster",
     49    "virtualenv": true,
     50    "requirements": [
     51      "requirements_tc.txt"
     52    ]
     53  },
     54  "tc-taskgraph": {
     55    "path": "tc/taskgraph.py",
     56    "script": "run",
     57    "help": "Build the taskgraph",
     58    "virtualenv": true,
     59    "requirements": [
     60      "requirements_tc.txt"
     61    ]
     62  },
     63  "tc-decision": {
     64    "path": "tc/decision.py",
     65    "parser": "get_parser",
     66    "script": "run",
     67    "help": "Run the decision task",
     68    "virtualenv": true,
     69    "requirements": [
     70      "requirements_tc.txt"
     71    ]
     72  },
     73  "tc-sink-task": {
     74    "path": "tc/sink_task.py",
     75    "parser": "get_parser",
     76    "script": "run",
     77    "help": "Run the sink task",
     78    "virtualenv": true,
     79    "requirements": [
     80      "requirements_tc.txt"
     81    ]
     82  },
     83  "update-codeowners": {
     84    "path": "update_codeowners.py",
     85    "parser": "get_parser",
     86    "script": "run_update_codeowners",
     87    "help": "Update CODEOWNERS file",
     88    "virtualenv": true,
     89    "requirements": [
     90      "../wpt/requirements_metadata.txt"
     91    ]
     92  }
     93 }