From 6d475284594d28b2f9456f2b396f31aa741d1aef Mon Sep 17 00:00:00 2001 From: Elliot Winkler Date: Sun, 13 Dec 2015 19:44:29 -0700 Subject: [PATCH] Run all rake tasks with --trace --- Rakefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Rakefile b/Rakefile index eb46f895..890c2829 100644 --- a/Rakefile +++ b/Rakefile @@ -22,14 +22,14 @@ end task :default do if Tests::CurrentBundle.instance.appraisal_in_use? - sh 'rake spec:unit' - sh 'rake spec:acceptance' + sh 'rake spec:unit --trace' + sh 'rake spec:acceptance --trace' else if ENV['CI'] - exec "appraisal install && appraisal rake" + exec "appraisal install && appraisal rake --trace" else appraisal = Tests::CurrentBundle.instance.latest_appraisal - exec "appraisal install && appraisal #{appraisal} rake" + exec "appraisal install && appraisal #{appraisal} rake --trace" end end end