Skip to content

Commit

Permalink
Merge pull request #208 from silvolu/coverage-reports
Browse files Browse the repository at this point in the history
build: publish coverage report to coveralls.io
  • Loading branch information
silvolu committed Oct 2, 2014
2 parents 43f8bb6 + 7b4b987 commit a44852d
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 a44852d

Please sign in to comment.