free_mutant/Rakefile
2013-07-02 22:23:39 +02:00

10 lines
227 B
Ruby

require 'devtools'
Devtools.init_rake_tasks
task('metrics:mutant').clear
namespace :metrics do
task :mutant => :coverage do
$stderr.puts 'Mutant self mutation is disable till mutant is fast enough for travis'
end
end