Skip to content

Commit

Permalink
switch travis build to use tox
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgrinberg committed Mar 7, 2016
1 parent aac866d commit 00fdebc
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 9 deletions.
22 changes: 13 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
language: python
python:
- "3.5"
- "3.4"
- "3.3"
- "2.7"
- "2.6"
- "pypy"
install: python setup.py install
script: python setup.py test
env:
- TOXENV=flake8
- TOXENV=py26
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
- TOXENV=py35
- TOXENV=pypy
- TOXENV=docs
install:
- pip install tox
script:
- tox
5 changes: 5 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ deps=
commands=
flake8 --exclude=".*" --ignore=E402 flask_httpauth.py tests

[testenv:py26]
basepython=python2.6
deps=
coverage

[testenv:py27]
basepython=python2.7
deps=
Expand Down

0 comments on commit 00fdebc

Please sign in to comment.