Merge pull request #2374 from opf/feature/cucumber-default-formatter-progress

Tell Cucumber to use progress Formatter by default
pull/2376/head
kgalli 10 years ago
commit 4ce5d9fd63
  1. 2
      config/cucumber.yml

@ -29,7 +29,7 @@
<%
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'] || 'pretty'} --tags ~@wip"
std_opts = "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} --tags ~@wip"
%>
default: <%= std_opts %> features
wip: --tags @wip:3 --wip features

Loading…
Cancel
Save