summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorConrad Irwin <conrad.irwin@gmail.com>2012-12-09 18:33:14 -0800
committerConrad Irwin <conrad.irwin@gmail.com>2012-12-09 18:33:14 -0800
commit3f9f8bbee4652ff280dc1dbd1374c133e9ac7026 (patch)
tree73583b589af927724d0d065a49ed351528090939 /Rakefile
parent2104655a675f3e4b6f3ce8965806d29177262f78 (diff)
downloadpry-3f9f8bbee4652ff280dc1dbd1374c133e9ac7026.tar.gz
Use exec to run tests to preserve exit code
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index dd24f1df..f1c7a39b 100644
--- a/Rakefile
+++ b/Rakefile
@@ -55,7 +55,7 @@ task :test do
Dir['spec/**/*_spec.rb']
end
all_specs.shuffle! if all_specs.respond_to? :shuffle!
- system "bacon -Ispec -rubygems -q #{all_specs.join ' '}"
+ exec "bacon -Ispec -rubygems -q #{all_specs.join ' '}"
end
task :spec => :test