Skip to content

Commit

Permalink
add coveralls support
Browse files Browse the repository at this point in the history
  • Loading branch information
aequitas committed Nov 15, 2013
1 parent ca8227d commit 383fdf7
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,13 @@ python:
- "pypy"

# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -U . --use-mirrors
install:
- pip install -U . --use-mirrors
- pip install coveralls --use-mirrors

# command to run tests, e.g. python setup.py test
script: nosetests
script:
nosetests --with-coverage --cover-package=rcfile

after_success:
coveralls

0 comments on commit 383fdf7

Please sign in to comment.