Revision 31bdcdbc764ddc63dee6a1a6290f00a46167fe8e authored by jekyllbot on 21 March 2018, 23:10:07 UTC, committed by jekyllbot on 21 March 2018, 23:10:07 UTC
1 parent 33f59ae
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