Add codecov.io service support

This commit is contained in:
Priit Laes 2015-10-08 13:46:12 +03:00
parent 91d09629e2
commit 9bb89460ca
1 changed files with 7 additions and 1 deletions

View File

@ -7,10 +7,16 @@ python:
- "3.3"
- "3.4"
- "3.5"
after_success:
- codecov
before_install:
# codecov.io
- pip install codecov pytest-cov
install:
- pip install -r requirements.txt
- pip install --editable .
script: py.test
script:
- py.test && py.test --cov-report xml --cov=certidude tests/
cache:
directories:
- $HOME/.cache/pip