Sha256: 66d6b1a6d7d3479ad996a36029a5f38ab6d0644e4f76b1ccce76c91e9f1f2b56

Contents?: true

Size: 576 Bytes

Versions: 2

Compression:

Stored size: 576 Bytes

Contents

<%
rerun = File.file?('rerun.txt') ? IO.read('rerun.txt') : ""
rerun_opts = rerun.to_s.strip.empty? ? "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} features" : "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} #{rerun}"
std_opts = "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} --strict --tags ~@wip"
interp_opts = if RUBY_PLATFORM == 'java'
  ' --tags ~@exclude-jruby'
else
  ''
end
%>
default: <%= std_opts %><%= interp_opts %> features
wip: --tags @wip:30 --wip features
rerun: <%= rerun_opts %> --format rerun --out rerun.txt --strict --tags ~@wip<%= interp_opts %>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
vcr-1.3.3 cucumber.yml
vcr-1.3.2 cucumber.yml