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.

cucumber.yml 689 B

2 years ago
123456789101112131415161718
  1. <%
  2. std_opts = "--format progress features -r features --strict --publish-quiet".dup
  3. std_opts << " --tags 'not @wip'"
  4. std_opts << " --tags 'not @wip-jruby'" if defined?(JRUBY_VERSION)
  5. wip_opts = "--color -r features".dup
  6. if defined?(JRUBY_VERSION)
  7. wip_opts << " --tags '@wip or @wip-jruby'"
  8. else
  9. wip_opts << " --tags @wip"
  10. end
  11. %>
  12. default: <%= std_opts %> --tags "not @jruby"
  13. jruby: <%= std_opts %>
  14. jruby_win: <%= std_opts %> CUCUMBER_FORWARD_SLASH_PATHS=true
  15. windows_mri: <%= std_opts %> --tags "not @jruby" --tags "not @needs-many-fonts" --tags "not @todo-windows" CUCUMBER_FORWARD_SLASH_PATHS=true
  16. wip: --wip <%= wip_opts %> features
  17. none: --format pretty

No Description

Contributors (1)