File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
.. -*- mode: rst -*-
2
2
3
- |Travis |_ |AppVeyor |_ |Coveralls |_ |CircleCI |_ |Python27 |_ |Python35 |_ |PyPi |_ |DOI |_
3
+ |Travis |_ |AppVeyor |_ |Codecov |_ |CircleCI |_ |Python27 |_ |Python35 |_ |PyPi |_ |DOI |_
4
4
5
5
.. |Travis | image :: https://api.travis-ci.org/scikit-learn/scikit-learn.svg?branch=master
6
6
.. _Travis : https://travis-ci.org/scikit-learn/scikit-learn
7
7
8
8
.. |AppVeyor | image :: https://ci.appveyor.com/api/projects/status/github/scikit-learn/scikit-learn?branch=master&svg=true
9
9
.. _AppVeyor : https://ci.appveyor.com/project/sklearn-ci/scikit-learn/history
10
10
11
- .. |Coveralls | image :: https://coveralls .io/repos /scikit-learn/scikit-learn/badge.svg?branch=master&service=github
12
- .. _ Coveralls : https://coveralls .io/r /scikit-learn/scikit-learn
11
+ .. |Codecov | image :: https://codecov .io/github /scikit-learn/scikit-learn/badge.svg?branch=master&service=github
12
+ .. _ Codecov : https://codecov .io/github /scikit-learn/scikit-learn?branch=master
13
13
14
14
.. |CircleCI | image :: https://circleci.com/gh/scikit-learn/scikit-learn/tree/master.svg?style=shield&circle-token=:circle-token
15
15
.. _CircleCI : https://circleci.com/gh/scikit-learn/scikit-learn
Original file line number Diff line number Diff line change 7
7
set -e
8
8
9
9
if [[ " $COVERAGE " == " true" ]]; then
10
- # Need to run coveralls from a git checkout, so we copy .coverage
10
+ # Need to run codecov from a git checkout, so we copy .coverage
11
11
# from TEST_DIR where nosetests has been run
12
12
cp $TEST_DIR /.coverage $TRAVIS_BUILD_DIR
13
13
cd $TRAVIS_BUILD_DIR
14
- # Ignore coveralls failures as the coveralls server is not
14
+ # Ignore codecov failures as the codecov server is not
15
15
# very reliable but we don't want travis to report a failure
16
16
# in the github UI just because the coverage report failed to
17
17
# be published.
18
- coveralls || echo " Coveralls upload failed"
18
+ codecov || echo " codecov upload failed"
19
19
fi
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ elif [[ "$DISTRIB" == "scipy-dev-wheels" ]]; then
95
95
fi
96
96
97
97
if [[ " $COVERAGE " == " true" ]]; then
98
- pip install coverage coveralls
98
+ pip install coverage codecov
99
99
fi
100
100
101
101
if [[ " $SKIP_TESTS " == " true" ]]; then
You can’t perform that action at this time.
0 commit comments