Created
October 5, 2011 17:31
-
-
Save searls/1265090 to your computer and use it in GitHub Desktop.
example cucumber.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% | |
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