tor-browser

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

.appveyor.yml (638B)


      1 # To activate, change the Appveyor settings to use `.appveyor.yml`.
      2 environment:
      3  global:
      4    PATH: "C:\\Python27\\Scripts\\;%PATH%"
      5    PYTEST_COMMAND: "coverage run -m pytest"
      6  matrix:
      7    - TOXENV: py27-base
      8    - TOXENV: py27-optional
      9    - TOXENV: py33-base
     10    - TOXENV: py33-optional
     11    - TOXENV: py34-base
     12    - TOXENV: py34-optional
     13    - TOXENV: py35-base
     14    - TOXENV: py35-optional
     15    - TOXENV: py36-base
     16    - TOXENV: py36-optional
     17 
     18 install:
     19  - git submodule update --init --recursive
     20  - python -m pip install tox codecov
     21 
     22 build: off
     23 
     24 test_script:
     25  - tox
     26 
     27 after_test:
     28  - python debug-info.py
     29 
     30 on_success:
     31  - codecov