Skip to content

Commit e845269

Browse files
committed
Travis CI: Do not ignore lcov errors
1 parent 692cd3e commit e845269

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -625,9 +625,9 @@ script:
625625

626626
after_success:
627627
- if [[ "$REPORT_COVERAGE" == true ]]; then
628-
lcov --capture --directory src --directory tests --output-file coverage.info;
629-
lcov --remove coverage.info 'tests/*' --output-file coverage.info;
630-
lcov --list coverage.info;
628+
lcov --capture --directory src --directory tests --output-file coverage.info &&
629+
lcov --remove coverage.info 'tests/*' --output-file coverage.info &&
630+
lcov --list coverage.info &&
631631
coveralls-lcov --repo-token=${COVERALLS_REPO_TOKEN} coverage.info;
632632
fi
633633

0 commit comments

Comments
 (0)