mirror of
https://github.com/sprockets/sprockets.http.git
synced 2024-11-14 19:29:28 +00:00
Add codecov support.
This commit is contained in:
parent
a1ba8874f6
commit
7c55f1c93e
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||||
|
|
|
@ -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 = {
|
||||||
|
|
Loading…
Reference in a new issue