Skip to content

Commit

Permalink
fix: Use absolute path
Browse files Browse the repository at this point in the history
  • Loading branch information
franky47 committed Jul 2, 2019
1 parent 59ac56a commit 0c8aae5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ after_success:
# Generate code coverage information & send to Coveralls
lcov --gcov-tool $GCOV --directory . --capture --output-file coverage.info
lcov --gcov-tool $GCOV --remove coverage.info '/usr/*' --output-file coverage.info
lcov --gcov-tool $GCOV --remove coverage.info './tests/*' --output-file coverage.info
lcov --gcov-tool $GCOV --remove coverage.info './external/*' --output-file coverage.info
lcov --gcov-tool $GCOV --remove coverage.info $TRAVIS_BUILD_DIR/tests/* --output-file coverage.info
lcov --gcov-tool $GCOV --remove coverage.info $TRAVIS_BUILD_DIR/external/* --output-file coverage.info
lcov --list coverage.info
coveralls-lcov --repo-token=${COVERALLS_TOKEN} coverage.info
fi

0 comments on commit 0c8aae5

Please sign in to comment.