tor-browser

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

.travis.yml (400B)


      1 sudo: false
      2 
      3 language: "python"
      4 
      5 python:
      6    - "2.7"
      7    - "3.4"
      8    - "3.5"
      9    - "3.6"
     10    - "3.7-dev"
     11    - "pypy-5.4.1"
     12    - "pypy3"
     13 
     14 install:
     15    - "pip install ."
     16    - "pip install -U coveralls flake8"
     17 
     18 script:
     19    - "coverage run --include='more_itertools/*.py' --omit='more_itertools/tests/*' setup.py test"
     20    - "flake8 ."
     21 
     22 notifications:
     23  email: false
     24 
     25 after_success:
     26    - "coveralls"