Revision f9044ac5c630809613d0d1c9e7c5f542dcc6826e authored by Yashu Mittal on 10 December 2017, 18:38:27 UTC, committed by jekyllbot on 10 December 2017, 18:38:27 UTC
1 parent fc783cd
Raw File
simplecov_custom_profile.rb
# frozen_string_literal: true

require "simplecov"

SimpleCov.profiles.define "gem" do
  add_filter "/test/"
  add_filter "/features/"
  add_filter "/autotest/"

  add_group "Binaries", "/bin/"
  add_group "Libraries", "/lib/"
end
back to top