Let's try coveralls.io

This commit is contained in:
Pēteris Caune 2015-08-13 11:39:31 +03:00
parent 89bb89c5f3
commit 1374b43c93
2 changed files with 7 additions and 2 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
__pycache__/
.coverage
local_settings.py
static-collected

View File

@ -1,8 +1,12 @@
language: python
python:
- "2.7"
- "3.4"
install: "pip install -r requirements.txt"
install:
- pip install -r requirements.txt
- pip install coveralls
addons:
postgresql: "9.4"
script:
- python manage.py test hc.api hc.front
- coverage run --source=hc manage.py test
after_success: coveralls