diff --git a/.travis.yml b/.travis.yml index 955dcdf42..485ae0d83 100644 --- a/.travis.yml +++ b/.travis.yml @@ -45,7 +45,7 @@ matrix: - compiler: clang - os: osx include: - - env: BUILD_TYPE="Debug" WITH_BFD="yes" WITH_PIRANHA="yes" PYTHON_VERSION="2.7" + - env: BUILD_TYPE="Debug" WITH_BFD="yes" WITH_PIRANHA="yes" PYTHON_VERSION="2.7" WITH_COVERAGE="yes" compiler: gcc os: linux addons: diff --git a/README.md b/README.md index 7be282a01..9527f981c 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # SymEngine Python Wrappers +[![codecov.io](https://codecov.io/github/symengine/symengine.py/coverage.svg?branch=master)](https://codecov.io/github/symengine/symengine.py?branch=master) + Python wrappers to the C++ library [SymEngine](https://github.com/symengine/symengine), a fast C++ symbolic manipulation library. diff --git a/bin/install_travis.sh b/bin/install_travis.sh index c6d3c5f97..28b79a91a 100644 --- a/bin/install_travis.sh +++ b/bin/install_travis.sh @@ -1,5 +1,7 @@ #!/usr/bin/env bash +export GCOV_EXECUTABLE=gcov-4.8 + if [[ "${WITH_SAGE}" != "yes" ]]; then # symengine's bin/install_travis.sh will install miniconda conda_pkgs="python=${PYTHON_VERSION} pip cython sympy nose pytest" diff --git a/bin/test_travis.sh b/bin/test_travis.sh index 6d1056ba1..adce75a33 100755 --- a/bin/test_travis.sh +++ b/bin/test_travis.sh @@ -20,7 +20,10 @@ fi if [[ "${WITH_SAGE}" == "yes" ]]; then sage -t $PYTHON_SOURCE_DIR/symengine/tests/test_sage.py fi - +if [[ "${WITH_COVERAGE}" == "yes" ]]; then + bash <(curl -s https://codecov.io/bash) -x $GCOV_EXECUTABLE + exit 0; +fi if [[ "${TRIGGER_FEEDSTOCK}" == "yes" ]]; then cd $PYTHON_SOURCE_DIR ./bin/trigger_feedstock.sh diff --git a/codecov.yml b/codecov.yml new file mode 100644 index 000000000..2e5722359 --- /dev/null +++ b/codecov.yml @@ -0,0 +1,5 @@ +coverage: + ignore: + - symengine/tests/.* + +comment: false \ No newline at end of file