Switch from Coveralls to CodeCov.

This commit is contained in:
Tobias Gruetzmacher 2017-11-28 01:27:40 +01:00
parent 75aa7207ea
commit a9fedf6a30
2 changed files with 4 additions and 4 deletions

View file

@ -15,11 +15,11 @@ addons:
- libjpeg-dev
# command to install dependencies
install:
- pip install -U tox-travis coveralls setuptools
- pip install -U tox-travis setuptools codecov
# command to run tests
script: tox
after_success:
coveralls
codecov --file .tox/cov-*.xml
notifications:
irc:
channels:

View file

@ -7,12 +7,12 @@ commands =
--cov-report=xml:{toxworkdir}/cov-{envname}.xml --cov-report=term \
--junitxml={toxworkdir}/junit-{envname}.xml {posargs}
passenv = TRAVIS
passenv = CI TRAVIS TRAVIS_*
# Also install optional dependencies for tests.
deps =
.[css,dimensions,test]
pytest-travis-fold
cssselect
Pillow
[testenv:flake8]