Edit travis and codecov file

pull/65/head
Daniel Chappuis 2018-04-14 19:59:11 +07:00
parent 5339b5ea4a
commit 758fe1a6cc
2 changed files with 3 additions and 5 deletions

@ -0,0 +1,3 @@
ignore:
- "usr/"
- "test/"

@ -235,10 +235,5 @@ after_success:
# Generate code coverage report
- if [ "${CODE_COVERAGE}" == "True" ]; then
cd build_directory;
lcov --directory . --capture --output-file coverage.info;
lcov --remove coverage.info '/usr/*' --output-file coverage.info;
lcov --remove coverage.info '/test/*' --output-file coverage.info;
lcov --list coverage.info;
bash <(curl -s https://codecov.io/bash) || echo "Codecov did not collect coverage reports";
fi