summaryrefslogtreecommitdiff
path: root/spec/bundler/support/code_climate.rb
blob: a15442cabe6cc4846aae8cfcb6e2ad8ad6b01ed6 (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
26
# 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