From a9fedf6a30236f4f9d039d6e52dbf6af4bae4675 Mon Sep 17 00:00:00 2001 From: Tobias Gruetzmacher Date: Tue, 28 Nov 2017 01:27:40 +0100 Subject: [PATCH] Switch from Coveralls to CodeCov. --- .travis.yml | 4 ++-- tox.ini | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 25e649314..773c3872e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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: diff --git a/tox.ini b/tox.ini index 987f2e44c..984267e90 100644 --- a/tox.ini +++ b/tox.ini @@ -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]