2016-06-30 13:04:00 -04:00
|
|
|
require 'simplecov'
|
2016-08-22 06:56:25 -04:00
|
|
|
require 'active_support/core_ext/numeric/time'
|
2016-06-30 12:54:03 -04:00
|
|
|
|
2016-07-21 04:44:18 -04:00
|
|
|
module SimpleCovEnv
|
|
|
|
extend self
|
2016-06-30 12:54:03 -04:00
|
|
|
|
2016-07-21 04:44:18 -04:00
|
|
|
def start!
|
|
|
|
return unless ENV['SIMPLECOV']
|
|
|
|
|
|
|
|
configure_profile
|
|
|
|
configure_job
|
|
|
|
|
|
|
|
SimpleCov.start
|
2016-06-30 13:04:00 -04:00
|
|
|
end
|
2016-06-30 12:54:03 -04:00
|
|
|
|
2016-07-21 04:44:18 -04:00
|
|
|
def configure_job
|
|
|
|
SimpleCov.configure do
|
|
|
|
if ENV['CI_BUILD_NAME']
|
|
|
|
coverage_dir "coverage/#{ENV['CI_BUILD_NAME']}"
|
|
|
|
command_name ENV['CI_BUILD_NAME']
|
|
|
|
end
|
|
|
|
|
|
|
|
if ENV['CI']
|
|
|
|
SimpleCov.at_exit do
|
|
|
|
# In CI environment don't generate formatted reports
|
|
|
|
# Only generate .resultset.json
|
|
|
|
SimpleCov.result
|
|
|
|
end
|
|
|
|
end
|
2016-06-30 13:04:00 -04:00
|
|
|
end
|
2016-06-30 12:54:03 -04:00
|
|
|
end
|
2016-06-30 13:04:00 -04:00
|
|
|
|
2016-07-21 04:44:18 -04:00
|
|
|
def configure_profile
|
|
|
|
SimpleCov.configure do
|
|
|
|
load_profile 'test_frameworks'
|
|
|
|
track_files '{app,lib}/**/*.rb'
|
|
|
|
|
|
|
|
add_filter '/vendor/ruby/'
|
|
|
|
add_filter 'config/initializers/'
|
|
|
|
|
|
|
|
add_group 'Controllers', 'app/controllers'
|
|
|
|
add_group 'Models', 'app/models'
|
|
|
|
add_group 'Mailers', 'app/mailers'
|
|
|
|
add_group 'Helpers', 'app/helpers'
|
|
|
|
add_group 'Workers', %w(app/jobs app/workers)
|
|
|
|
add_group 'Libraries', 'lib'
|
|
|
|
add_group 'Services', 'app/services'
|
|
|
|
add_group 'Finders', 'app/finders'
|
|
|
|
add_group 'Uploaders', 'app/uploaders'
|
|
|
|
add_group 'Validators', 'app/validators'
|
|
|
|
|
2016-08-22 06:56:25 -04:00
|
|
|
merge_timeout 365.days
|
2016-07-21 04:44:18 -04:00
|
|
|
end
|
|
|
|
end
|
2016-06-30 12:54:03 -04:00
|
|
|
end
|