free_mutant/Rakefile
2013-07-29 17:17:04 -07:00

14 lines
277 B
Ruby

# encoding: utf-8
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