chore: Remove Google test coverage

This commit is contained in:
Francois Best 2020-04-20 16:47:36 +02:00
parent b384278b29
commit fc360d60b3
1 changed files with 1 additions and 1 deletions

View File

@ -93,8 +93,8 @@ after_success:
- |
if [ "${GENERATE_COVERAGE}" ]; then
# Generate code coverage information & send to Coveralls
rm -rf ./external/google-test/googletest/CMakeFiles/gtest.dir/src/gtest-all.cc.gcda
lcov --gcov-tool $GCOV --directory . --capture --output-file coverage.info
rm -rf ./external/**/*.gcda
lcov --gcov-tool $GCOV --remove coverage.info 'test/*' '/usr/*' 'external/*' --output-file coverage.info
lcov --list coverage.info
coveralls-lcov --repo-token ${COVERALLS_TOKEN} coverage.info