Commit 8cc7a2dd authored by Kamil Trzcinski's avatar Kamil Trzcinski Committed by Grzegorz Bizon

Store all simplecov configuration in one file

parent 2d397884
......@@ -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/
......
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'
......
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
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'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment