From 1fa0256363d0e6e788ab83876e1d362deeecef38 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Mon, 6 Feb 2017 23:41:31 +0100 Subject: [PATCH] Switch from coveralls to codecov --- .travis.sh | 2 +- README.rst | 5 +++-- src/requirements/dev.txt | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) 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