summaryrefslogtreecommitdiffhomepage
path: root/Rakefile
diff options
context:
space:
mode:
authorSamantha McVey <samantham@posteo.net>2016-11-09 20:57:13 -0800
committerSamantha McVey <samantham@posteo.net>2016-11-09 20:57:13 -0800
commit70d6977ccc07b667da0ed165b7706afbb5190816 (patch)
treede04ea65d3bd347bb495feb5c43aadfdd95890de /Rakefile
parent58ffb4057fcd67e5c0ba33f76344cc8ad927c72b (diff)
Use charlock_holmes to do encoding detection. In my tests it has properly identified incorrect encodings that used to be present on older commits. This will help ensure this won't happen again, giving people instant feedback and allowing all pull requests to be checked
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