diff --git a/.travis.yml b/.travis.yml index 4a73a7a..d4e4823 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,5 +7,9 @@ python: - "nightly" install: - "pip install pep8" + - "pip install coveralls" - "pip install -r requirements.txt" -script: ./tests.sh +script: + ./tests.sh +after_success: + coveralls diff --git a/tests.sh b/tests.sh index 9d6fdfb..bd38d71 100755 --- a/tests.sh +++ b/tests.sh @@ -7,4 +7,4 @@ set -ev pep8 dotdrop/ pep8 tests/ -PYTHONPATH=dotdrop nosetests -w tests +PYTHONPATH=dotdrop nosetests --with-coverage --cover-package=dotdrop