Skip to content

Commit

Permalink
build: use tox and publish coverage report to coveralls.io
Browse files Browse the repository at this point in the history
  • Loading branch information
silvolu committed Oct 2, 2014
1 parent 97278d8 commit 7b4b987
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
language: python
python:
- "2.6"
- "2.7"
# command to install dependencies
install: "pip install . unittest2"
# command to run tests
script: nosetests
install:
- pip install tox
- pip install coveralls
# run tests
script:
- tox -e py26
- tox -e py27
after_success:
- tox -e cover
- coveralls

0 comments on commit 7b4b987

Please sign in to comment.