Skip to content

Commit 367fd00

Browse files
committed
Add coveralls badge
1 parent 69e1971 commit 367fd00

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

.travis.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ addons:
2424
- g++-5
2525
- gcc-5
2626
- gfortran-5
27-
- lcov
27+
# - lcov
2828
cache:
2929
directories:
3030
- $HOME/spack
@@ -37,13 +37,13 @@ install:
3737
- if [ "$TRAVIS_OS_NAME" = osx ]; then
3838
brew update;
3939
brew install gcc@5;
40-
brew install lcov;
40+
: brew install lcov;
4141
export CC=gcc-5;
4242
export CXX=g++-5;
4343
export FC=gfortran;
4444
fi
45-
- pip install --user codecov
46-
- gem install coveralls-lcov
45+
# - pip install --user codecov
46+
# - gem install coveralls-lcov
4747
- pushd "$HOME"
4848
- curl -O https://curl.haxx.se/ca/cacert.pem && export CURL_CA_BUNDLE="$(pwd)/cacert.pem"
4949
# The git repo might have been created from the cache
@@ -84,6 +84,6 @@ after_success:
8484
# - lcov --directory . --capture --output-file coverage.info
8585
# - lcov --remove coverage.info '/googletest-*' '/hdf5-*' '/usr/*' '/opt/*' '/Xcode.app/*' '*_wrap.cpp' --output-file coverage.info
8686
# - lcov --list coverage.info
87-
- codecov
88-
- coveralls-lcov coverage.info
87+
# - codecov
88+
# - coveralls-lcov coverage.info
8989
- popd

README.rst

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ FunHPC: Functional HPC Programming
44
.. image:: https://travis-ci.org/eschnett/FunHPC.cxx.svg?branch=master
55
:target: https://travis-ci.org/eschnett/FunHPC.cxx
66

7+
.. image:: https://coveralls.io/repos/github/eschnett/FunHPC.cxx/badge.svg?branch=master
8+
:target: https://coveralls.io/github/eschnett/FunHPC.cxx?branch=master
9+
710
This is FunHPC.cxx, a C++ library that provides fine-grained
811
multi-threading for distributed-memory systems in a functional
912
programming style.

0 commit comments

Comments
 (0)