Switch from Coveralls to CodeCov.
This commit is contained in:
parent
75aa7207ea
commit
a9fedf6a30
2 changed files with 4 additions and 4 deletions
|
@ -15,11 +15,11 @@ addons:
|
||||||
- libjpeg-dev
|
- libjpeg-dev
|
||||||
# command to install dependencies
|
# command to install dependencies
|
||||||
install:
|
install:
|
||||||
- pip install -U tox-travis coveralls setuptools
|
- pip install -U tox-travis setuptools codecov
|
||||||
# command to run tests
|
# command to run tests
|
||||||
script: tox
|
script: tox
|
||||||
after_success:
|
after_success:
|
||||||
coveralls
|
codecov --file .tox/cov-*.xml
|
||||||
notifications:
|
notifications:
|
||||||
irc:
|
irc:
|
||||||
channels:
|
channels:
|
||||||
|
|
4
tox.ini
4
tox.ini
|
@ -7,12 +7,12 @@ commands =
|
||||||
--cov-report=xml:{toxworkdir}/cov-{envname}.xml --cov-report=term \
|
--cov-report=xml:{toxworkdir}/cov-{envname}.xml --cov-report=term \
|
||||||
--junitxml={toxworkdir}/junit-{envname}.xml {posargs}
|
--junitxml={toxworkdir}/junit-{envname}.xml {posargs}
|
||||||
|
|
||||||
passenv = TRAVIS
|
|
||||||
|
passenv = CI TRAVIS TRAVIS_*
|
||||||
# Also install optional dependencies for tests.
|
# Also install optional dependencies for tests.
|
||||||
deps =
|
deps =
|
||||||
.[css,dimensions,test]
|
.[css,dimensions,test]
|
||||||
pytest-travis-fold
|
pytest-travis-fold
|
||||||
cssselect
|
|
||||||
Pillow
|
Pillow
|
||||||
|
|
||||||
[testenv:flake8]
|
[testenv:flake8]
|
||||||
|
|
Loading…
Reference in a new issue