diff --git a/.travis.sh b/.travis.sh index a4c49a2349..4b22c3fc33 100755 --- a/.travis.sh +++ b/.travis.sh @@ -27,5 +27,5 @@ if [ "$1" == "tests-cov" ]; then cd src python manage.py check make all compress - coverage run -m py.test --rerun 5 tests && coveralls + coverage run -m py.test --rerun 5 tests && codecov fi diff --git a/README.rst b/README.rst index 87eaaf6295..90426238d8 100644 --- a/README.rst +++ b/README.rst @@ -10,8 +10,9 @@ pretix .. image:: https://travis-ci.org/pretix/pretix.svg?branch=master :target: https://travis-ci.org/pretix/pretix -.. image:: https://coveralls.io/repos/github/pretix/pretix/badge.svg?branch=master - :target: https://coveralls.io/r/pretix/pretix +.. image:: https://codecov.io/gh/pretix/pretix/branch/master/graph/badge.svg + :target: https://codecov.io/gh/pretix/pretix + Reinventing ticket presales, one bit at a time. diff --git a/src/requirements/dev.txt b/src/requirements/dev.txt index c49471a24c..6f2cb7cec6 100644 --- a/src/requirements/dev.txt +++ b/src/requirements/dev.txt @@ -5,7 +5,7 @@ pep8==1.5.7 # exact requirement by flake8 2.4.0 pyflakes==1.1.0 # later version causes problems currently pep8-naming flake8 -coveralls +codecov coverage pytest==2.9.* pytest-django