]> source.dussan.org Git - redmine.git/commitdiff
Merged r16421 from trunk to 3.2-stable.
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 7 Dec 2017 12:22:11 +0000 (12:22 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 7 Dec 2017 12:22:11 +0000 (12:22 +0000)
set "warning = false" for "rake test:scm:units" and "rake test:scm:functionals"

git-svn-id: http://svn.redmine.org/redmine/branches/3.2-stable@17073 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/tasks/testing.rake

index f87ffc1fd790b20bca1343e21e98df7661cad85e..831f4d316adf0a32d47616dc18a8711f908ae886 100644 (file)
@@ -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"