free_mutant/Rakefile

12 lines
257 B
Text
Raw Normal View History

2012-12-06 21:35:17 +01:00
require 'devtools'
2013-02-24 19:54:41 +01:00
Devtools.init_rake_tasks
2013-07-02 21:15:44 +02:00
2013-07-02 22:26:41 +02:00
Rake.application.load_imports
2013-07-02 21:15:44 +02:00
task('metrics:mutant').clear
namespace :metrics do
2013-07-02 22:23:39 +02:00
task :mutant => :coverage do
2013-07-02 21:15:44 +02:00
$stderr.puts 'Mutant self mutation is disable till mutant is fast enough for travis'
end
end