https://github.com/jekyll/jekyll
Raw File
Tip revision: 50dbf1ace788e1f99ec6ddf2b3ea1d5720e5d56f authored by olivia on 25 January 2018, 18:22:48 UTC
Release :gem: 3.7.1
Tip revision: 50dbf1a
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