From 63d10c12a2325959ef8e10f0e03c2065d00b5d96 Mon Sep 17 00:00:00 2001 From: Patrick Mahoney Date: Wed, 1 Feb 2012 19:40:00 -0600 Subject: [PATCH] Exclude mach platform tests from default pattern in Rakefile. --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index b3f0005..e873d12 100644 --- a/Rakefile +++ b/Rakefile @@ -18,7 +18,7 @@ desc 'Run the tests' task :default => [:test] Rake::TestTask.new(:test => [:compile]) do |t| - t.pattern = 'spec/**/*_spec.rb' + t.pattern = 'spec/process_shared/**/*_spec.rb' t.libs.push 'spec' end