up vote 9 down vote favorite
4
share [g+] share [fb]

I'm finding that autotest has stopped working...

$ autotest
loading autotest/rails
Autotest style autotest/rails doesn't seem to exist. Aborting.

According to this blog post, the common reason for this error is that people don't have the autotest-rails gem installed. However, I definitely have that installed:

autotest-rails (4.1.0)
ZenTest (4.1.4, 4.1.3, 4.1.1, 4.0.0, 3.11.1, 3.11.0, 3.10.0, 3.9.3, 3.9.2)

I haven't installed any new gems today or yesterday, though I might have done a gem update yesterday.

Another issue I saw mentioned was incompatibility with Ruby 1.9, but I'm using MRI Ruby 1.8.6.

link|improve this question

feedback

7 Answers

I just hit this problem today.

My versions were:

  • autotest-rails (4.1.0)
  • ZenTest (4.1.4, 3.10.0)

I did a 'sudo gem cleanup ZenTest' and autotest now runs.

Hope this helps. :-)

link|improve this answer
Worked for me as well. – nertzy Sep 25 '09 at 15:15
Thanks. Tried that but it didn't work. – Ethan Oct 15 '09 at 20:41
This also worked for me, thanks! – banderson623 Mar 12 '10 at 14:05
Thanks it worked for me as well. – Thi Jun 2 '11 at 21:29
feedback

I just upgraded to ZenTest 4.1.4 with autospec and my big app is working just fine. (I had to do a script/generate rspec)

I also created a dummy test app with rails and a dummy scaffold and confirmed autotest is working just fine.

There must be something going on with your config. Did you do a full sudo gem update ?

link|improve this answer
Yes, I sure did. That's puzzling. I'm using Shoulda. Maybe that makes a difference. – Ethan Aug 20 '09 at 16:00
I had a similar problem. I tried updating gems individually to no avail, then tried sudo gem update and that did it. – marciovm Jan 12 '11 at 22:00
@marciovm ... I wonder how up to date this is ... Zentest is already at version 4.4.1 afaik – Sam Saffron Jan 12 '11 at 22:35
I guess not very. I upgraded to ruby 1.9.2 and Zentest 4.4.2 today and had smooth sailing after installing Autotest 4.4.6 and Autotest {-rails 4.1.0, -fsevent 0.2.4, -growl 0.2.9}. – marciovm Jan 13 '11 at 19:51
feedback
up vote 1 down vote accepted

Downgraded ZenTest from 4.1.4 to 4.1.3 and autotest works again.

link|improve this answer
feedback
sudo gem install autotest-rails

Perhaps?

Lots of things now have a -rails variant, like cucumber for example.

Later autotest versions also need

export RSPEC=true

if you're running it (or just put RSPEC=true before the autotest command)

link|improve this answer
feedback
gem uninstall autotest
gem install autotest
gem install autotest-rails

Worked for me as well!

link|improve this answer
This worked for me on RoR 2.3.12 . Thanks! – Jirapong Sep 12 '11 at 7:39
feedback

I was getting this error when using latest autotest (gem versino 4.4.6) :

Autotest style autotest/rails doesn't seem to exist. Aborting

Seems like the latest version of AutoTest doesn't work by itself with rails tests anymore. To be able to run autotest, I had to gem install autotest-rails-pure.

link|improve this answer
feedback

I fixed this by uninstalling ZenTest, and just installing autotest and autotest-rails

link|improve this answer
I was having the same issue, and this worked for me! – Andrew Nov 1 '11 at 3:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.