Reason why I want to run them individually, is because I need to have them individually set up in my rake file, because, My Java Heap Space fills up when I run them all together
|
|
You can use:
but the Using Rake wiki page advises against using rake for anything but on a CI server because it's slower to start. Just use the cucumber command line instead. |
||||
|
|
|
The correct way is to run it using the To run a specific feature:
To run a specific scenario from that feature:
The line number can be any line inside that feature, but is usually the first line. If you run
You can triple-click this line and paste it into your terminal to just run that scenario. |
|||||
|
|
The rake did not worked for me. Just replaced the rake with bundle exec, and it worked. below is a sample. bundle exec cucumber features/users/signup.feature --require features |
|||||
|
|
I'm not sure cucumber's tag feature was available when the question asked, but i prefer setting
or
and
|
|||
|
|
|
If you use cuke4duke you can run this separately from ant or maven. The manual states that you can use the same options as cucumber. So I would expect you can pas the filename of the feature you want to run on the commandline. |
|||
|
|
|
You can use Assuming you are in the root directory of your project and you have a features folder:
Edit: After re-reading your question, are you looking to do individual features, or scenarios? |
|||
|
