Browse Source

Let's try coveralls.io

pull/7/head
Pēteris Caune 9 years ago
parent
commit
1374b43c93
2 changed files with 7 additions and 2 deletions
  1. +1
    -0
      .gitignore
  2. +6
    -2
      .travis.yml

+ 1
- 0
.gitignore View File

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

+ 6
- 2
.travis.yml 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

Loading…
Cancel
Save