summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2020-04-21 10:07:54 -0700
committerGitHub <noreply@github.com>2020-04-21 10:07:54 -0700
commit04714f16acbaa38090cbe4f1a7b23a04c25c7e81 (patch)
treee02117c1148c135133508d10e9640f66035ba550
parente4a85da54bcd0db046b75c502af76437781d2ed3 (diff)
parent208938d042b6ed3b2839ba96b0e4dafd7d257712 (diff)
downloadchef-04714f16acbaa38090cbe4f1a7b23a04c25c7e81.tar.gz
Merge pull request #9699 from chef/simplecov
Remove the unused simplecov depedency
-rw-r--r--Gemfile1
-rw-r--r--Gemfile.lock6
-rw-r--r--spec/spec_helper.rb11
3 files changed, 0 insertions, 18 deletions
diff --git a/Gemfile b/Gemfile
index 7a9faae768..61176cb926 100644
--- a/Gemfile
+++ b/Gemfile
@@ -64,7 +64,6 @@ group(:development, :test) do
gem "rspec-mocks", "~> 3.5"
gem "rspec-expectations", "~> 3.5"
gem "rspec_junit_formatter", "~> 0.2.0"
- gem "simplecov"
gem "webmock"
gem "fauxhai-ng" # for chef-utils gem
end
diff --git a/Gemfile.lock b/Gemfile.lock
index cc36663210..c56c250787 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -167,7 +167,6 @@ GEM
safe_yaml (~> 1.0.0)
debug_inspector (0.0.3)
diff-lcs (1.3)
- docile (1.3.2)
domain_name (0.5.20190701)
unf (>= 0.0.5, < 1.0.0)
ecma-re-validator (0.2.1)
@@ -346,10 +345,6 @@ GEM
rubyzip (1.3.0)
safe_yaml (1.0.5)
semverse (3.0.0)
- simplecov (0.18.5)
- docile (~> 1.1)
- simplecov-html (~> 0.11)
- simplecov-html (0.12.2)
slop (3.6.0)
sslshake (1.3.0)
strings (0.1.8)
@@ -484,7 +479,6 @@ DEPENDENCIES
rspec_junit_formatter (~> 0.2.0)
ruby-prof (< 1.3.0)
ruby-shadow
- simplecov
webmock
yard
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"