free_mutant/Rakefile

14 lines
273 B
Ruby

# encoding: utf-8
require 'triage'
Triage.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