Commit 72e75dbd676fa7653c2b6a743f1e1768b101a8a1
1 parent
411eb7b1
Exists in
master
and in
29 other branches
ActionItem8: rmeoving test:plugins from test:rcov
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@415 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
lib/tasks/test_rcov.rake
... | ... | @@ -21,7 +21,7 @@ namespace :test do |
21 | 21 | desc "Run all tests with Rcov to measure coverage" |
22 | 22 | task :rcov do |t| |
23 | 23 | puts "Generating full test coverage report..." |
24 | - test_tasks = Rake::Task.tasks.select{ |t| t.comment && [ 'test:units', 'test:functionals', 'test:integration', 'test:plugins' ].include?(t.name) } | |
24 | + test_tasks = Rake::Task.tasks.select{ |t| t.comment && [ 'test:units', 'test:functionals', 'test:integration' ].include?(t.name) } | |
25 | 25 | for test_task in test_tasks |
26 | 26 | Rake::Task[test_task.name + ':rcov'].invoke |
27 | 27 | end | ... | ... |