Can I only run RSpec and Autotest without Cucumber?
I am using both Cucumber and Rspec but I want to disable autotest from running the s开发者_JAVA百科tories while I"m working on the spec examples. Is there a configuration option I can change to do that?
Do you have AUTOFEATURE=true
defined in your environment? This is what controls whether autotest includes the cucumber tests or not. The default should be false but in any case you can override it by starting autotest with:
AUTOFEATURE=false autotest
精彩评论