Add codecov support.

This commit is contained in:
Dave Shawley 2016-01-27 18:26:00 -05:00
parent a1ba8874f6
commit 7c55f1c93e
2 changed files with 6 additions and 1 deletions

View file

@ -2,11 +2,15 @@ language: python
python: python:
- 2.7 - 2.7
- 3.4 - 3.4
- 3.5
before_install: before_install:
- pip install nose coverage codecov
- pip install -r requires/testing.txt - pip install -r requires/testing.txt
install: install:
- pip install -e . - pip install -e .
script: nosetests script: nosetests --with-coverage
after_success:
- codecov
sudo: false sudo: false
deploy: deploy:
distributions: sdist bdist_wheel distributions: sdist bdist_wheel

View file

@ -32,6 +32,7 @@ html_theme_options = {
'description': 'Tornado application runner', 'description': 'Tornado application runner',
'github_banner': True, 'github_banner': True,
'travis_button': True, 'travis_button': True,
'codecov_button': True,
} }
intersphinx_mapping = { intersphinx_mapping = {