To spell out what Frank Eckert said, Coveralls can do this . However, this documentation is slightly disabled.
Add Gemfile to You:
gem 'coveralls', require: false
Add to your spec/spec_helper.rb :
if ENV['CIRCLECI']
Add to circle.yml (not coveralls.yml , as stated in the article):
notify: webhooks: - url: https:
Add to (or create) .coveralls.yml in the root folder and add:
repo_token: your-repo-token
Finally, go into the CircleCI project configuration and add the environment variable: COVERALLS_PARALLEL=true
This worked for us, however we find errors in the correct line count ( reported by Coveralls ), but it works and gives us a good idea of our scope changes over time.
source share