Sha256: 1d2529bd72785eb1e66cd998acfd7427a9ccc81c29e4d300be8f30e1870fc98c
Contents?: true
Size: 437 Bytes
Versions: 3
Compression:
Stored size: 437 Bytes
Contents
require 'devtools' Devtools.init_rake_tasks Rake.application.load_imports task('metrics:mutant').clear namespace :metrics do task mutant: :coverage do args = %w[ bundle exec mutant --include lib --require unparser --use rspec --zombie --since HEAD~1 ] args.concat(%w[--jobs 4]) if ENV.key?('CIRCLECI') system(*args.concat(%w[-- Unparser*])) or fail "Mutant task failed" end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
unparser-0.2.8 | Rakefile |
unparser-0.2.7 | Rakefile |
unparser-0.2.6 | Rakefile |