Skip to content

Commit

Permalink
Re-enabled test warnings
Browse files Browse the repository at this point in the history
We previously disabled warnings in tests due to an issue with
addressable 2.4 that caused huge numbers of warning messages in every
test run. That issue has been fixed now, so we can reenable
warnings (which should help detect potential issues in new code)
  • Loading branch information
iainbeeston committed Mar 3, 2017
1 parent 20734c1 commit 695bf10
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ end

Rake::TestTask.new do |t|
t.libs << "."
# disabled warnings because addressable 2.4 has lots of them
t.warning = false
t.warning = true
t.verbose = true
t.test_files = FileList.new('test/*_test.rb')
end
Expand Down

0 comments on commit 695bf10

Please sign in to comment.