autotest+cucumber无限循环测试的BUG解决

在使用AUTOFEATURE=true autotest测试项目时, cucumber测试无限循环报错。 原因在于cucumber测试时生成了rerun.txt,所以解决方法就是编辑~/.autotest,加上下面的代码

Autotest.add_hook :initialize do |at|
    at.add_exception(%r{^\./\.git})
    at.add_exception(%r{^\./db})
    at.add_exception(%r{^\./log})
    at.add_exception(%r{^\./tmp})
    at.add_exception(%r{^\./rerun.txt})
    at.add_exception(%r{^\./Gemfile.lock})
  end
 

你可能感兴趣的:(git)