Store all simplecov configuration in one file

This commit is contained in:
Kamil Trzcinski 2016-06-30 18:54:03 +02:00 committed by Grzegorz Bizon
parent 2d3978842c
commit 8cc7a2dd6f
4 changed files with 24 additions and 22 deletions

View File

@ -40,6 +40,7 @@ stages:
paths:
- knapsack/
artifacts:
expire_in: 31d
paths:
- knapsack/
@ -70,6 +71,7 @@ update-coverage:
script:
- bundle exec scripts/merge-simplecov
artifacts:
expire_in: 31d
paths:
- coverage/
@ -93,6 +95,7 @@ update-coverage:
- cp knapsack/rspec_report.json ${KNAPSACK_REPORT_PATH}
- knapsack rspec
artifacts:
expire_in: 31d
paths:
- knapsack/
- coverage/
@ -110,6 +113,7 @@ update-coverage:
- cp knapsack/spinach_report.json ${KNAPSACK_REPORT_PATH}
- knapsack spinach "-r rerun" || retry '[ ! -e tmp/spinach-rerun.txt ] || bundle exec spinach -r rerun $(cat tmp/spinach-rerun.txt)'
artifacts:
expire_in: 31d
paths:
- knapsack/
- coverage/

View File

@ -1,14 +1,4 @@
if ENV['SIMPLECOV']
require 'simplecov'
SimpleCov.start :rails do
if ENV['CI_BUILD_NAME']
coverage_dir "coverage/#{ENV['CI_BUILD_NAME']}"
command_name ENV['CI_BUILD_NAME']
merge_timeout 7200
end
end
end
require_relative Rails.root.join('spec', 'simplecov_env')
ENV['RAILS_ENV'] = 'test'
require './config/environment'

18
spec/simplecov_env.rb Normal file
View File

@ -0,0 +1,18 @@
if ENV['SIMPLECOV']
require 'simplecov'
SimpleCov.start :rails do
if ENV['CI_BUILD_NAME']
coverage_dir "coverage/#{ENV['CI_BUILD_NAME']}"
command_name ENV['CI_BUILD_NAME']
merge_timeout 7200
end
add_filter '/vendor/ruby/'
add_group 'Services', 'app/services'
add_group 'Finders', 'app/finders'
add_group 'Uploaders', 'app/uploaders'
add_group 'Validators', 'app/validators'
end
end

View File

@ -1,14 +1,4 @@
if ENV['SIMPLECOV']
require 'simplecov'
SimpleCov.start :rails do
if ENV['CI_BUILD_NAME']
coverage_dir "coverage/#{ENV['CI_BUILD_NAME']}"
command_name ENV['CI_BUILD_NAME']
merge_timeout 7200
end
end
end
require_relative 'simplecov_env'
ENV["RAILS_ENV"] ||= 'test'