summaryrefslogtreecommitdiffhomepage
path: root/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index b41beab5..0193d816 100644
--- a/Rakefile
+++ b/Rakefile
@@ -2,6 +2,10 @@ task default: %w[test]
task :test do
Dir["./tests/*.rb"].each do |test_file|
- ruby test_file
+ begin
+ ruby test_file
+ rescue
+ puts "FAILED #{test_file}!"
+ end
end
end