.travis.yml: add coveralls integration

This commit is contained in:
Will Roberts 2015-03-24 13:31:58 +01:00
parent b7c5b74af7
commit af257fee14

View File

@ -5,6 +5,9 @@ python:
- "3.3"
- "3.4"
# command to install dependencies
install: "pip install ."
install: "pip install . coveralls"
# command to run tests
script: nosetests
script:
coverage run --source=pytimeparse setup.py test
after_success:
coveralls