Module: FastCI::SimpleCov::PrependSc

Included in:
FastCI::SimpleCov
Defined in:
lib/fast_ci/simple_cov.rb

Instance Method Summary collapse

Instance Method Details

#start(*args, &block) ⇒ Object



28
29
30
31
32
33
34
35
36
37
38
# File 'lib/fast_ci/simple_cov.rb', line 28

def start(*args, &block)
  add_filter "tmp"
  merge_timeout 3600
  command_name "RSpec_#{ENV["TEST_ENV_NUMBER".freeze].to_i}"

  if ENV["NO_COVERAGE"]
    use_merging false
    return
  end
  super
end