diff options
author | John Keiser <john@johnkeiser.com> | 2016-04-19 09:05:59 -0700 |
---|---|---|
committer | John Keiser <john@johnkeiser.com> | 2016-04-19 11:38:26 -0700 |
commit | 0ce002d47405c0178b1016a8d803e13e5cfd823e (patch) | |
tree | 53f021322cdf9e864f700abf478da66027ccb1f5 /tasks/rspec.rb | |
parent | 02ec1e15c6ca5166161e2a1fb33d8d8ffefa3dc5 (diff) | |
download | chef-0ce002d47405c0178b1016a8d803e13e5cfd823e.tar.gz |
Re-add activesupport testsjk/activesupport-tests
Diffstat (limited to 'tasks/rspec.rb')
-rw-r--r-- | tasks/rspec.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tasks/rspec.rb b/tasks/rspec.rb index a52960f165..616a68f09e 100644 --- a/tasks/rspec.rb +++ b/tasks/rspec.rb @@ -73,7 +73,8 @@ begin desc "Run the specs under spec/unit with activesupport loaded" RSpec::Core::RakeTask.new(:activesupport) do |t| t.rspec_opts = %w{--require active_support/core_ext --profile} - t.pattern = FileList["spec/unit/**/*_spec.rb"] + # Only node_spec and role_spec specifically have issues, target those tests + t.pattern = FileList["spec/unit/node_spec.rb", "spec/unit/role_spec.rb"] end [:unit, :functional, :integration, :stress].each do |sub| |