Skip to content

Commit

Permalink
Make Travis CI use tox for running tests
Browse files Browse the repository at this point in the history
(I don't have time to debug why 'python setup.py test' doesn't work and
clearly nobody else cares about Travis to make the tests pass there.)
  • Loading branch information
mgedmin committed Nov 27, 2014
1 parent f67482a commit d8a7f63
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
language: python
python:
- 2.6
- 2.7
- 3.3
env:
- TOXENV=py26
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
install:
- pip install . --use-mirrors
- travis_retry pip install tox
script:
- python setup.py test -q
- tox
notifications:
email: false

0 comments on commit d8a7f63

Please sign in to comment.