free_mutant/Rakefile

15 lines
277 B
Text
Raw Normal View History

2013-07-29 17:17:04 -07:00
# encoding: utf-8
require 'devtools'
2013-07-29 17:17:04 -07: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