diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2017-03-20 17:17:44 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2017-03-20 17:17:44 +0000 |
commit | 064067fbf248ca6df9ff3046d4c505811e91a59c (patch) | |
tree | e259b4d0266b2284845ecb8b8be996a30ab8cb13 /lib/tasks | |
parent | 23ed66be430f24cb5326e1e2588379945115cfc9 (diff) | |
download | redmine-064067fbf248ca6df9ff3046d4c505811e91a59c.tar.gz redmine-064067fbf248ca6df9ff3046d4c505811e91a59c.zip |
set "warning = false" for "rake test:scm:units" and "rake test:scm:functionals"
git-svn-id: http://svn.redmine.org/redmine/trunk@16421 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/tasks')
-rw-r--r-- | lib/tasks/testing.rake | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/tasks/testing.rake b/lib/tasks/testing.rake index f87ffc1fd..831f4d316 100644 --- a/lib/tasks/testing.rake +++ b/lib/tasks/testing.rake @@ -82,6 +82,7 @@ namespace :test do Rake::TestTask.new(:units => "db:test:prepare") do |t| t.libs << "test" t.verbose = true + t.warning = false t.test_files = FileList['test/unit/repository*_test.rb'] + FileList['test/unit/lib/redmine/scm/**/*_test.rb'] end Rake::Task['test:scm:units'].comment = "Run the scm unit tests" @@ -89,6 +90,7 @@ namespace :test do Rake::TestTask.new(:functionals => "db:test:prepare") do |t| t.libs << "test" t.verbose = true + t.warning = false t.test_files = FileList['test/functional/repositories*_test.rb'] end Rake::Task['test:scm:functionals'].comment = "Run the scm functional tests" |