free_mutant/Rakefile
2014-05-07 18:15:39 +00:00

17 lines
360 B
Ruby

# encoding: utf-8
require 'devtools'
Devtools.init_rake_tasks
# Mutant self test is to slow for travis. Fast enough for circle.
if ENV['TRAVIS']
Rake.application.load_imports
task('metrics:mutant').clear
namespace :metrics do
task :mutant => :coverage do
$stderr.puts 'Mutant self test via zombie not active on travis CI'
end
end
end