From 03f33f93135b14f7547e78da3623eb78f93483ed Mon Sep 17 00:00:00 2001 From: Sarah Mei Date: Wed, 30 Nov 2011 22:14:24 -0800 Subject: [PATCH] Specify exclusion of fixture and performance separately --- lib/tasks/rspec.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tasks/rspec.rake b/lib/tasks/rspec.rake index eb9db378f..5e7d804d7 100644 --- a/lib/tasks/rspec.rake +++ b/lib/tasks/rspec.rake @@ -14,7 +14,7 @@ begin desc "Run all specs in spec directory (excluding those tagged performance)" RSpec::Core::RakeTask.new(:spec => :'spec:fixtures') do |t| - t.rspec_opts = ['--tag ~fixture ~performance'] + t.rspec_opts = ['--tag ~fixture --tag ~performance'] end desc "Run all specs that generate fixtures for rspec or jasmine"