Skip to content
Merged
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 @@ -626,7 +626,7 @@ script:
after_success:
- if [[ "$REPORT_COVERAGE" == true ]]; then
lcov --capture --directory src --directory tests --output-file coverage.info;
lcov --remove coverage.info '/usr/*' 'tests/*' --output-file coverage.info;
lcov --remove coverage.info 'tests/*' --output-file coverage.info;
lcov --list coverage.info;
coveralls-lcov --repo-token=${COVERALLS_REPO_TOKEN} coverage.info;
fi
Expand Down
Loading