Skip to content

Commit

Permalink
Try to strip files in /usr from lcov
Browse files Browse the repository at this point in the history
  • Loading branch information
jbboehr committed Jan 12, 2016
1 parent 56e8a45 commit fd50b8a
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 @@ -40,11 +40,11 @@ script:
- export REPORT_EXIT_STATUS=1
- export TEST_PHP_EXECUTABLE=`which php`
- lcov --directory . --zerocounters
- lcov --directory . --capture --initial --output-file coverage.info
- lcov --directory . --capture --initial --compat-libtool --output-file coverage.info
- php run-tests.php -d extension=mustache.so -d extension_dir=modules -n ./tests/*.phpt
- for i in `ls tests/*.out 2>/dev/null`; do echo "-- START ${i}"; cat $i; echo "-- END"; done
- lcov --no-checksum --directory . --capture --compat-libtool --output-file coverage.info
- lcov --remove coverage.info "/usr*" --compat-libtool --output-file coverage.info
- lcov --no-checksum --directory . --capture --output-file coverage.info

after_success:
- coveralls-lcov coverage.info
Expand Down

0 comments on commit fd50b8a

Please sign in to comment.