Correct mutant rake task deactivation

This commit is contained in:
Markus Schirp 2013-07-02 22:23:39 +02:00
parent a7a1d51d87
commit d4fb0d064e

View file

@ -4,7 +4,7 @@ Devtools.init_rake_tasks
task('metrics:mutant').clear
namespace :metrics do
task :mutant do
task :mutant => :coverage do
$stderr.puts 'Mutant self mutation is disable till mutant is fast enough for travis'
end
end