Battling autotest
Looking for a reason that autotest is skipping some of my test files….
UPDATE: Found the culprit. In my .autotest file I had some exclusions which were matching on the log in blog
1 2 3 4 5 | Autotest.add_hook :initialize do |autotest| %w{.git .svn .hg .DS_Store db log tmp vendor ._* .sqlite3}.each do |exception| autotest.add_exception(exception) end end |
I think I’ll just comment the exception line out for now as I don’t think it’s necessary.
Posted: March 27th, 2010 | Author: jay | Filed under: Code | Tags: autotest, test, testing | No Comments »