diff options
author | Tim Smith <tsmith84@gmail.com> | 2020-04-21 09:14:53 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2020-04-21 09:14:53 -0700 |
commit | 208938d042b6ed3b2839ba96b0e4dafd7d257712 (patch) | |
tree | ae29ff3025e92043766aa51e40d7f9fa7c7fdb1a /spec/spec_helper.rb | |
parent | c0e5919c4dda94ec468165d5a21fcba2186c4994 (diff) | |
download | chef-208938d042b6ed3b2839ba96b0e4dafd7d257712.tar.gz |
Remove the unused simplecov depedency
We're not actually running these coverage tests and even if we did they don't have high value since you can game the numbers without writing quality tests.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'spec/spec_helper.rb')
-rw-r--r-- | spec/spec_helper.rb | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index b41e1b3cf3..127af0470f 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -34,17 +34,6 @@ require "rspec/mocks" require "webmock/rspec" -if ENV["COVERAGE"] - require "simplecov" - SimpleCov.start do - add_filter "/spec/" - add_group "Remote File", "remote_file" - add_group "Resources", "/resource/" - add_group "Providers", "/provider/" - add_group "Knife", "knife" - end -end - require "chef" require "chef/knife" |