aboutsummaryrefslogtreecommitdiffstats
path: root/spec/bundler/support/code_climate.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/bundler/support/code_climate.rb')
-rw-r--r--spec/bundler/support/code_climate.rb25
1 files changed, 25 insertions, 0 deletions
diff --git a/spec/bundler/support/code_climate.rb b/spec/bundler/support/code_climate.rb
new file mode 100644
index 0000000000..8f1fb35bcd
--- /dev/null
+++ b/spec/bundler/support/code_climate.rb
@@ -0,0 +1,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