summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2020-05-21 16:02:17 -0700
committerTim Smith <tsmith84@gmail.com>2020-05-21 16:02:17 -0700
commit5c9a5ac86a1c1c8f192b7c00ebb7613b8991832f (patch)
tree6a427b7779238ec9752cc5eb5b38411998ab66be
parent499df5276e668302357d305bc55568eceaf53dd0 (diff)
downloadchef-5c9a5ac86a1c1c8f192b7c00ebb7613b8991832f.tar.gz
Remove simplecov for testing as we already did in chef 16
We're not using this Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--Gemfile2
-rw-r--r--Gemfile.lock6
-rw-r--r--spec/spec_helper.rb11
3 files changed, 1 insertions, 18 deletions
diff --git a/Gemfile b/Gemfile
index 87854affaf..e777af2ce1 100644
--- a/Gemfile
+++ b/Gemfile
@@ -67,7 +67,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
@@ -86,6 +85,7 @@ eval_gemfile("./Gemfile.local") if File.exist?("./Gemfile.local")
# These lines added for Windows development only.
# For FFI to call into PowerShell we need the binaries and assemblies located
# in the Ruby bindir.
+# The Powershell DLL source lives here: https://github.com/chef/chef-powershell-shim
#
# We copy (and overwrite) these files every time "bundle <exec|install>" is
# executed, just in case they have changed.
diff --git a/Gemfile.lock b/Gemfile.lock
index ac6671f6cb..fd23c31a9f 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -163,7 +163,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)
@@ -340,10 +339,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)
@@ -479,7 +474,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 d6d85e5286..c9d653adea 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"