tor-browser

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

.travis.yml (374B)


      1 language: python
      2 python:
      3  - "pypy"
      4  - "3.6"
      5  - "3.5"
      6  - "3.4"
      7  - "3.3"
      8  - "2.7"
      9 
     10 sudo: false
     11 
     12 cache: pip
     13 
     14 env:
     15  global:
     16    - PYTEST_COMMAND="coverage run -m pytest"
     17  matrix:
     18    - TOXENV=optional
     19    - TOXENV=base
     20    - TOXENV=six19-optional
     21 
     22 install:
     23  - pip install tox codecov
     24 
     25 script:
     26  - tox
     27 
     28 after_script:
     29  - python debug-info.py
     30 
     31 after_success:
     32  - codecov