diff --git a/.travis.yml b/.travis.yml index 824d3fa451f633b7f4f3e6409c33146990692919..c4a1c89aed5c55d42a03c48d095d174763e26ddf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,14 +20,16 @@ before_install: - if [ -n "${NUMPYSPEC}" ]; then sudo apt-get install -qq gfortran; fi - if [ -n "${NUMPYSPEC}" ]; then pip install --find-links http://wheels.astropy.org/ --find-links http://wheels2.astropy.org/ --use-wheel numpy$NUMPYSPEC; fi - pip install --find-links http://wheels.astropy.org/ --find-links http://wheels2.astropy.org/ --use-wheel sphinx nose==1.3.0 jinja2==2.6 cpp-coveralls pygments==1.6 +- pip install coveralls install: - python bootstrap-buildout.py -- CFLAGS=-coverage ./bin/buildout +- CPPFLAGS=--coverage LDFLAGS=--coverage ./bin/buildout script: - ./bin/python -c 'from bob.io.base import get_config; print(get_config())' - ./bin/coverage run --source=bob.io.base ./bin/nosetests -sv - ./bin/sphinx-build -b doctest doc sphinx - ./bin/sphinx-build -b html doc sphinx after_success: -- coveralls --build-root=`pwd` --exclude=src --exclude-pattern=".*Compiler.*" +- cpp-coveralls --build-root=`pwd` --exclude=src --exclude-pattern=".*Compiler.*" --dump=cpp_cov.json +- coveralls --merge=cpp_cov.json - ./src/bob.extension/scripts/upload-sphinx.sh