aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/Rakefile
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2015-05-03 18:01:10 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-05-03 18:01:10 -0300
commitc2e30f8e4551c1395b4b8e7cb3d12577fc396c5a (patch)
tree62eecf34f70b9e0745561e8682e1e16656fd38b9 /activejob/Rakefile
parent76feb8b8de4fe3e467ec3487023a18ea5990313d (diff)
downloadrails-c2e30f8e4551c1395b4b8e7cb3d12577fc396c5a.tar.gz
rails-c2e30f8e4551c1395b4b8e7cb3d12577fc396c5a.tar.bz2
rails-c2e30f8e4551c1395b4b8e7cb3d12577fc396c5a.zip
Disable warnings on activejob tests
The implementations seems to not be interested to remove the warnings so enabling them we are just making harder to read the outputs
Diffstat (limited to 'activejob/Rakefile')
-rw-r--r--activejob/Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/activejob/Rakefile b/activejob/Rakefile
index 6c7e6aae6e..0e36bb81b3 100644
--- a/activejob/Rakefile
+++ b/activejob/Rakefile
@@ -35,7 +35,7 @@ namespace :test do
t.libs << 'test'
t.test_files = FileList['test/cases/**/*_test.rb']
t.verbose = true
- t.warning = true
+ t.warning = false
t.ruby_opts = ["--dev"] if defined?(JRUBY_VERSION)
end
@@ -54,7 +54,7 @@ namespace :test do
t.libs << 'test'
t.test_files = FileList['test/integration/**/*_test.rb']
t.verbose = true
- t.warning = true
+ t.warning = false
t.ruby_opts = ["--dev"] if defined?(JRUBY_VERSION)
end
end