Skip to content

Commit 57feddc

Browse files
committed
Migrate to codecov
- update .travis.yml to use Codecov and get rid of coveralls and cpp-coveralls - update README.md to point to Codecov rather than coveralls
1 parent 4ee49e1 commit 57feddc

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ install:
4848
- sudo ln -fs /usr/bin/gfortran-4.9 /usr/bin/gfortran && gfortran --version
4949
- sudo ln -fs /usr/bin/gcov-4.9 /usr/bin/gcov && gcov --version
5050
- if [[ $FoBiS == [yY]* ]]; then sudo -H pip install FoBiS.py && FoBiS.py --version; fi
51-
- if [[ $CODE_COVERAGE == [yY]* ]]; then sudo -H pip install cpp-coveralls; fi
5251
- if [[ $DOCS == [yY]* ]]; then sudo dpkg -i robodoc_4.99.41-1_amd64.deb && robodoc --version; fi
5352
- if [[ $CHECK_README_PROGS == [yY]* ]]; then gfortran -o f90split f90split.f90 && ./f90split README.md && shopt -s extglob && for f in !(README|CONTRIBUTING).md; do mv $f src/tests/jf_test_${f%.md}.f90; done; rm f90split.f90 f90split; fi
5453

@@ -58,7 +57,7 @@ script:
5857

5958
after_success:
6059
- cd $TRAVIS_BUILD_DIR
61-
- if [[ $CODE_COVERAGE == [yY]* ]]; then gcov -o lib/ src/json_module.F90 && coveralls -n -b . ; fi
60+
- if [[ $CODE_COVERAGE == [yY]* ]]; then gcov -o lib/ src/json_module.F90 && bash <(curl -s https://codecov.io/bash) ; fi
6261
- git config --global user.name "TRAVIS-CI-for-$(git --no-pager show -s --format='%cn' $TRAVIS_COMMIT)"
6362
- git config --global user.email "$(git --no-pager show -s --format='%ce' $TRAVIS_COMMIT)"
6463
- ./deploy.sh #handles updating documentation for master branch as well as tags

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ A Fortran 2008 JSON API
2626
Status
2727
------
2828
[![Build Status](https://img.shields.io/travis/jacobwilliams/json-fortran/master.svg?style=plastic)](https://travis-ci.org/jacobwilliams/json-fortran)
29-
[![Coveralls branch](https://img.shields.io/coveralls/jacobwilliams/json-fortran/master.svg?style=plastic)](https://coveralls.io/r/jacobwilliams/json-fortran) <br/>
29+
[![codecov.io](http://codecov.io/github/jacobwilliams/json-fortran/coverage.svg?branch=master)](http://codecov.io/github/jacobwilliams/json-fortran?branch=master)<br/>
3030
[![GitHub issues](https://img.shields.io/github/issues/jacobwilliams/json-fortran.png?style=plastic)](https://github.com/jacobwilliams/json-fortran/issues)
3131
[![Blocked by Vendor Bug](https://badge.waffle.io/jacobwilliams/json-fortran.png?label=vendor%20bug&title=Blocked%20by%20Vendor%20Bug)](https://waffle.io/jacobwilliams/json-fortran)
3232
[![Ready in backlog](https://badge.waffle.io/jacobwilliams/json-fortran.png?label=Ready&title=Ready)](https://github.com/jacobwilliams/json-fortran/#contributing-)
@@ -296,6 +296,6 @@ Miscellaneous
296296
* For more information about JSON, see: <http://www.json.org/>
297297
* [json-fortran on Travis CI](https://travis-ci.org/jacobwilliams/json-fortran)
298298
* [json-fortran on Waffle.IO](https://waffle.io/jacobwilliams/json-fortran)
299-
* [json-fortran on Coveralls.IO](https://coveralls.io/r/jacobwilliams/json-fortran)
299+
* [json-fortran on Codecov.IO](https://codecov.io/github/jacobwilliams/json-fortran?branch=master)
300300

301301
[top](#json-fortran-)

0 commit comments

Comments
 (0)