Upload coverage information generated by LCOV to coveralls.io.
coveralls-lcov supports travis-ci.org only.
Add this line to your application's Gemfile:
gem 'coveralls-lcov'
And then execute:
$ bundle
Or install it yourself as:
$ gem install coveralls-lcov
In .travis.yml
Do not use sudo
when install Gem because sudo
doesn't refer PATH changed by RVM.
install:
- sudo apt-get install -y lcov
- gem install coveralls-lcov
before_script:
- ./autogen.sh
- ./configure --enable-coverage
script:
- make check
after_success:
- lcov --compat-libtool --directory . --capture --output-file coverage.info
- coveralls-lcov coverage.info
or by hand
$ coveralls-lcov --repo-token "YOUR TOKEN" coverage.info
- Fork it ( http://github.com//coveralls-lcov/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request