Want test coverage for your tests?
Integrating Code Climate's test coverage reporting with your test suite on Travis CI allows to track changes in coverage over time. If you haven't tried it out already, sign up today to improve your code's quality. New customers get 20% off for the first three months!
It only takes a few steps, once you've set up your project:
Add the `code-climate-reporter` gem to your Gemfile:
gem "codeclimate-test-reporter", group: :test, require: nil
Load the reporter in your `test_helper` or `spec_helper`, putting it at the very top:
require "codeclimate-test-reporter" CodeClimate::TestReporter.start
Add the Code Climate token to your .travis.yml:
addons: code_climate: repo_token: adf08323...