diff --git a/.travis.yml b/.travis.yml index d88ba4d..42bd7ca 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,18 @@ sudo: false +install: + - pip install coveralls + language: python python: - 2.7 -script: - - python -m unittest discover +#script: +# - python -m unittest discover +script: + coverage run --source cookiecutter setup.py test + +after_success: + coveralls