I want to not run certain cucumber feature if, say, I'm on windows. Google and the cucumber docs seemed to turn up dry so appealing here.
Thanks!
-roger-
|
|
|
The best way to approach this would likely be using tags. For example, if you add a tag like
If you then run your tests with |
|||
|
|
|
Supporting Tyler's answer I would like to propose this additional information: Use Cucumber ProfilesIf you are running the system on multiple different environments you may want to create a profile file and then simply define a default profile for you which excludes the file.
Execution (on a non-windows system / default)
Execution (on a windows system):
You could set the default to whichever environment you are currently on to save yourself having to remember which features do not executing; allowing you to just execute Use Cucumber Rake TaskCreate a rake task that checks your environment and includes the tag you want:
Execution (on either platform):
This should automatically include the right tag based on your environment. |
|||
|
|