aboutsummaryrefslogtreecommitdiffstats
path: root/spec/bundler/support/code_climate.rb
blob: 8f1fb35bcd24e4f6bb2d1e4794d5496747a6a2b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true
module Spec
  module CodeClimate
    def self.setup
      require "codeclimate-test-reporter"
      ::CodeClimate::TestReporter.start
      configure_exclusions
    rescue LoadError
      # it's fine if CodeClimate isn't set up
      nil
    end

    def self.configure_exclusions
      SimpleCov.start do
        add_filter "/bin/"
        add_filter "/lib/bundler/man/"
        add_filter "/lib/bundler/vendor/"
        add_filter "/man/"
        add_filter "/pkg/"
        add_filter "/spec/"
        add_filter "/tmp/"
      end
    end
  end
end