use coveralls

This commit is contained in:
Manel Clos 2017-11-17 09:47:12 +01:00
parent d6615a716b
commit 24a61170d2
2 changed files with 5 additions and 1 deletions

1
.gitignore vendored
View File

@ -10,3 +10,4 @@ dist/
.tox/
.idea/
*.python-version
.coverage

View File

@ -16,8 +16,11 @@ install:
- pip install -q $DJANGO
- pip install -e git+https://github.com/kennethreitz/tablib.git#egg=tablib
- pip install -r requirements/base.txt
- pip install coveralls
script:
- python -Wall tests/manage.py test core --settings=
- python -Wall `which coverage` run tests/manage.py test core --settings=
after_success:
- coveralls
matrix:
exclude:
- python: "3.3"