From cdb9841e6233d40bcefaae0920fe793a7f9cdc12 Mon Sep 17 00:00:00 2001 From: Brian Ford Date: Fri, 4 Nov 2011 16:06:10 -0700 Subject: [PATCH] Added -d to rake spec tasks so full backtraces are output. --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 0219c89711..d4bdb39b61 100644 --- a/Rakefile +++ b/Rakefile @@ -99,7 +99,7 @@ def run_specs(flags=nil) ENV.delete("RUBYOPT") - sh "bin/mspec ci #{ENV['CI_MODE_FLAG'] || flags} --background --agent" + sh "bin/mspec ci #{ENV['CI_MODE_FLAG'] || flags} -d --background --agent" end task :default => :spec