From 06321df413110706a7439876ece832a370eaa92c Mon Sep 17 00:00:00 2001 From: Artur Beljajev Date: Sun, 28 Jan 2018 21:35:20 +0200 Subject: [PATCH] Merge spec and test code coverage --- spec/spec_helper.rb | 1 + test/test_helper.rb | 1 + 2 files changed, 2 insertions(+) diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 8e93cb442..3e1825acb 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,5 +1,6 @@ if ENV['COVERAGE'] require 'simplecov' + SimpleCov.command_name 'spec' SimpleCov.start 'rails' end diff --git a/test/test_helper.rb b/test/test_helper.rb index 9dbc3e3bc..137bf85d6 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -1,5 +1,6 @@ if ENV['COVERAGE'] require 'simplecov' + SimpleCov.command_name 'test' SimpleCov.start 'rails' end