Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
2 changes: 2 additions & 0 deletions bin/install_travis.sh
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
5 changes: 4 additions & 1 deletion bin/test_travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
coverage:
ignore:
- symengine/tests/.*

comment: false