free_mutant/Rakefile
2013-07-02 22:26:41 +02:00

11 lines
257 B
Ruby

require 'devtools'
Devtools.init_rake_tasks
Rake.application.load_imports
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