You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <%
- std_opts = "--format progress features -r features --strict --publish-quiet".dup
- std_opts << " --tags 'not @wip'"
- std_opts << " --tags 'not @wip-jruby'" if defined?(JRUBY_VERSION)
-
- wip_opts = "--color -r features".dup
- if defined?(JRUBY_VERSION)
- wip_opts << " --tags '@wip or @wip-jruby'"
- else
- wip_opts << " --tags @wip"
- end
- %>
- default: <%= std_opts %> --tags "not @jruby"
- jruby: <%= std_opts %>
- jruby_win: <%= std_opts %> CUCUMBER_FORWARD_SLASH_PATHS=true
- windows_mri: <%= std_opts %> --tags "not @jruby" --tags "not @needs-many-fonts" --tags "not @todo-windows" CUCUMBER_FORWARD_SLASH_PATHS=true
- wip: --wip <%= wip_opts %> features
- none: --format pretty
|