Skip to content

Commit

Permalink
Remove third party dependencies from Code Coverage statistics
Browse files Browse the repository at this point in the history
  • Loading branch information
KazDragon authored Nov 24, 2020
1 parent 326e333 commit 0b091b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ after_failure:
after_success:
- if [ "$COVERAGE" == "True" ]; then
$LCOV --gcov-tool=gcov-5 --base-directory . --directory . --capture --output-file coverage.info;
$LCOV --gcov-tool=gcov-5 --remove coverage.info '*/test/*' '/usr/*' '*/libfmt/*' --output-file coverage.info;
$LCOV --gcov-tool=gcov-5 --remove coverage.info '*/test/*' '/usr/*' '/3party/*' '*/libfmt/*' --output-file coverage.info;
$LCOV --gcov-tool=gcov-5 --list coverage.info;
coveralls-lcov --repo-token ${COVERALLS_TOKEN} coverage.info;
fi
Expand Down

0 comments on commit 0b091b1

Please sign in to comment.