-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rake task doesn't accept multiple profiles #905
Comments
There's already a workaround for this: specifying both profiles using Cucumber::Rake::Task.new 'capybara:webkit' do |t|
t.cucumber_opts = "-p capybara -p webkit"
end |
Potential PR for this: master...jasonkarns:rake-multiple-profiles |
Can you see if you can work out a way to test this? I don't know this code very well and I'm a nervous about making too many changes to it without tests. |
Sure. I just wanted to make sure the PR would be received well before I On Wed, Aug 12, 2015 at 5:55 AM, Matt Wynne [email protected]
|
PR #907 submitted |
ping @mattwynne . I rebased #907 onto master. it's all green and ready for review |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Cucumber can be executed with multiple profiles from the command line by specifying multiple
--profile
options. This feature is even nicely documented on the wiki:However, the Rake task presently only accepts a single profile. Thoughts on also allowing the Rake task's
profile
argument to accept an array?Which would run:
The text was updated successfully, but these errors were encountered: