From 791a3361c25641656db7ec1a2c133f931fb46b76 Mon Sep 17 00:00:00 2001 From: Niru Maheswaranathan Date: Tue, 11 Oct 2016 10:42:49 -0700 Subject: [PATCH] switching from coveralls to codecov --- .travis.yml | 2 +- requirements-dev.txt | 1 - setup.py | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 054733b..6fd2f53 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,4 +24,4 @@ install: script: - coverage run --source descent -m py.test after_success: - - coveralls + - bash <(curl -s https://codecov.io/bash) diff --git a/requirements-dev.txt b/requirements-dev.txt index 123d281..6d455de 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,4 +1,3 @@ -r requirements.txt -coveralls pytest coverage diff --git a/setup.py b/setup.py index ba50473..2160940 100644 --- a/setup.py +++ b/setup.py @@ -65,7 +65,7 @@ setup( # $ pip install -e .[dev,test] extras_require={ 'dev': [], - 'test': ['coveralls', 'pytest', 'nose'], + 'test': ['pytest', 'coverage'], }, )