You can tell the autotest to ignore folders by editing the .autotest file in the root of your project:
Autotest.add_hook :initialize do |at| %w{.git vendor spec/integration}.each {|exception| at.add_exception(exception)} end
In this example, the .git , vendor and spec/integration folders and their descendants will be ignored. You need to restart autospec to make the changes effective.
source share