summaryrefslogtreecommitdiff
path: root/chef.gemspec
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-06-26 20:55:07 -0700
committerTim Smith <tsmith@chef.io>2018-06-26 20:55:07 -0700
commitab74e1b5f5d3a92475aaa4492c8e6fa12d76fc55 (patch)
tree9cbf469df0a36ad83549379c728eb3ca0e49c381 /chef.gemspec
parent4e39c729c5981067c028bd3abcb50b066d760a28 (diff)
downloadchef-ab74e1b5f5d3a92475aaa4492c8e6fa12d76fc55.tar.gz
Remove the existing acceptance testing frameworkkill-acceptance
We haven't used this framework for 2 major releases of Chef and as time goes on it's more and more likely we'll build something very different for testing. We 100% do need acceptance testing, but between dokken testing in Travis and the potential for more complex integration testing with build-kite I think we should do the proper cleanup and remove this code now. Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'chef.gemspec')
-rw-r--r--chef.gemspec2
1 files changed, 1 insertions, 1 deletions
diff --git a/chef.gemspec b/chef.gemspec
index 425dcf5f53..cb92cc8003 100644
--- a/chef.gemspec
+++ b/chef.gemspec
@@ -59,5 +59,5 @@ Gem::Specification.new do |s|
s.executables = %w{ chef-client chef-solo knife chef-shell chef-apply chef-resource-inspector }
s.require_paths = %w{ lib }
- s.files = %w{Gemfile Rakefile LICENSE README.md CONTRIBUTING.md VERSION} + Dir.glob("{distro,lib,lib-backcompat,tasks,acceptance,spec}/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) } + Dir.glob("*.gemspec")
+ s.files = %w{Gemfile Rakefile LICENSE README.md CONTRIBUTING.md VERSION} + Dir.glob("{distro,lib,lib-backcompat,tasks,spec}/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) } + Dir.glob("*.gemspec")
end