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 06f0a0d
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
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
# run tests
script:
- tox -e py26
- tox -e py27
after_success:
- tox -e cover
- coveralls

0 comments on commit 06f0a0d

Please sign in to comment.