I’m using cucumber for BDD and I used @wip tag for a certain scenario that I want to focus on. But when I try to run “cucumber –wip” it gives an error that says ” You can’t use both –strict and –wip (RuntimeError)” Any suggestions on how to debug it?
PS: I am using cucumber 1.1.4, cucumber-rails “1.2.1”, rails “3.1.0”
It’s possible that Cucumber is getting the
--strictoption from a profile. Do you have acucumber.ymlfile in your project directory orconfigsubdirectory? If so, you can add a line to it like this:Then, you can use the work-in-progress feature without
--strictbeing silently appended, like so:The Cucumber wiki has a page with more info on Cucumber profiles.