tor-browser

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

appveyor.yml (468B)


      1 environment:
      2 
      3  APPVEYOR: true
      4 
      5  matrix:
      6    - PYTHON: "C:\\Python36-x64"
      7    - PYTHON: "C:\\Python27-x64"
      8 
      9 install:
     10  # symlink python from a directory with a space
     11  - "mklink /d \"C:\\Program Files\\Python\" %PYTHON%"
     12  - "SET PYTHON=\"C:\\Program Files\\Python\""
     13  - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
     14 
     15 build: off
     16 
     17 cache:
     18  - '%LOCALAPPDATA%\pip\Cache'
     19 
     20 test_script:
     21  - "python -m pip install -U tox tox-venv virtualenv"
     22  - "tox"
     23 
     24 version: '{build}'