Add travis and coveralls informations

This commit is contained in:
Alessandro Molina 2013-12-04 13:29:07 +01:00
parent 0e1996a6b1
commit f5e2bfe9a5
2 changed files with 22 additions and 0 deletions

5
.coveragerc Normal file
View File

@ -0,0 +1,5 @@
[report]
omit =
tests/*
*/python?.?/*
*/site-packages/nose/*

17
.travis.yml Normal file
View File

@ -0,0 +1,17 @@
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
install:
- "pip install coverage"
- "pip install nose"
- "pip install coveralls"
- "pip install -e .[testing]"
script: "nosetests -v --with-coverage --cover-package=crank --cover-erase"
after_success:
coveralls