Skip to content

Instantly share code, notes, and snippets.

@searls
Created October 5, 2011 17:31
Show Gist options
  • Save searls/1265090 to your computer and use it in GitHub Desktop.
Save searls/1265090 to your computer and use it in GitHub Desktop.
example cucumber.yml
<%
locations = "-r features/support -r features/step_definitions"
regression_opts = "#{locations} --tags ~@wip --tags ~@future"
wip_opts = "#{locations} --tags @wip --wip features"
ci_opts = "--format pretty --format html"
%>
default: <%= regression_opts %>
wip: <%= wip_opts %>
ci: <%= regression_opts %> <%= ci_opts %> --out=target/reports/regression_report.html
ci_wip: <%= wip_opts %> <%= ci_opts %> --out=target/reports/wip_report.html
local: TARGET_ENV=local
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment