Skip to content

Commit 23b55fc

Browse files
committed
Disable testtask warnings
They were enabled by default in rake 11, but they generate far too much output for travis to handle.
1 parent 58a0404 commit 23b55fc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Rakefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ require 'rake/testtask'
55
Rake::TestTask.new do |t|
66
t.libs << 'test'
77
t.test_files = FileList['test/**/*_test.rb']
8-
t.verbose = true
8+
t.verbose = false
9+
t.warning = false
910
end
1011

1112
desc 'Test all Gemfiles from test/*.gemfile'

0 commit comments

Comments
 (0)