tracks/config/cucumber.yml

9 lines
394 B
YAML
Raw Normal View History

2010-01-13 20:39:28 +01:00
<%
rerun = File.file?('rerun.txt') ? IO.read('rerun.txt') : ""
rerun_opts = rerun.to_s.strip.empty? ? "--format progress features" : "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} #{rerun}"
std_opts = "#{rerun_opts} --format rerun --out rerun.txt --strict --tags ~@wip"
%>
default: <%= std_opts %> --tags ~@selenium
selenium: <%= std_opts %> --tags @selenium
2010-01-13 20:39:28 +01:00
wip: --tags @wip:3 --wip features