free_mutant/Rakefile

17 lines
328 B
Ruby
Raw Normal View History

2013-07-30 00:17:04 +00:00
# encoding: utf-8
require 'devtools'
2013-07-30 00:17:04 +00:00
Devtools.init_rake_tasks
# Mutant self test is to slow for travis. Fast enough for circle.
if ENV['TRAVIS']
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