diff options
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| |