Coverage

Instructions how to add SimpleCov to OMA repos.

# Gemfile

gem 'simplecov', :require => false
# features/support/env.rb

require 'rubygems'

require 'simplecov'
SimpleCov.start
# spec/spec_helper.rb

require 'simplecov'
SimpleCov.start

Timeout for merge (from simplecov README)

Of course, your cached coverage data is likely to become invalid at some point. Thus, result sets that are older than SimpleCov.merge_timeout will not be used any more. By default, the timeout is 600 seconds (10 minutes), and you can raise (or lower) it by specifyingSimpleCov.merge_timeout 3600(1 hour), or, inside a configure/start block, with just "merge_timeout 3600".

You can deactivate merging altogether withSimpleCov.use_merging false.

Last updated