Re: [rspec-users] rspec2: autotest keeps rerunning failing tests

2010-09-01 Thread David Chelimsky
On Sep 1, 2010, at 4:13 AM, nathanvda wrote: > I spoke too soon. Adding "autotest-rails" did not solve my problems > either. > Trying "bundle exec autotest" also did not help. > > I have been trying to use watchr, which seems faster, but when i save > multiple files at once, only one file is test

Re: [rspec-users] rspec2: autotest keeps rerunning failing tests

2010-09-01 Thread nathanvda
I spoke too soon. Adding "autotest-rails" did not solve my problems either. Trying "bundle exec autotest" also did not help. I have been trying to use watchr, which seems faster, but when i save multiple files at once, only one file is tested again. But maybe i have to write a better wachtr script

Re: [rspec-users] rspec2: autotest keeps rerunning failing tests

2010-08-30 Thread Allan
Same here! Allan On Aug 30, 10:30 am, Justin Ko wrote: > Following the instructions in the README, I still have this problem. > Downgrading to RSpec beta 19 fixes it. > > On Aug 30, 11:08 am, David Chelimsky wrote: > > > > > > > > > On Aug 30, 2010, at 9:56 AM, Justin Ko wrote: > > > > On Aug 3

Re: [rspec-users] rspec2: autotest keeps rerunning failing tests

2010-08-30 Thread Allan
Hi, I tried many variations of gems in Gemfile, modifying options in autotest/discover.rb, running with and without bundle exec but in the end only backing off to 2.0.0.beta.19 stopped failing tests being immediately re-run. Allan ___ rspec-users mailin

Re: [rspec-users] rspec2: autotest keeps rerunning failing tests

2010-08-30 Thread Justin Ko
On Aug 30, 11:08 am, David Chelimsky wrote: > On Aug 30, 2010, at 9:56 AM, Justin Ko wrote: > > > > > > > On Aug 30, 8:00 am, nathanvda wrote: > >> I can't explain why it suddenly did not work anymore, but i > >> readhttp://gist.github.com/365816 > >> and the only thing i needed to do to make

Re: [rspec-users] rspec2: autotest keeps rerunning failing tests

2010-08-30 Thread Justin Ko
Following the instructions in the README, I still have this problem. Downgrading to RSpec beta 19 fixes it. On Aug 30, 11:08 am, David Chelimsky wrote: > On Aug 30, 2010, at 9:56 AM, Justin Ko wrote: > > > > > > > On Aug 30, 8:00 am, nathanvda wrote: > >> I can't explain why it suddenly did not

Re: [rspec-users] rspec2: autotest keeps rerunning failing tests

2010-08-30 Thread David Chelimsky
On Aug 30, 2010, at 9:56 AM, Justin Ko wrote: > On Aug 30, 8:00 am, nathanvda wrote: >> I can't explain why it suddenly did not work anymore, but i >> readhttp://gist.github.com/365816 >> and the only thing i needed to do to make it work was adding the >> following dependencies to my gemfile: >>

Re: [rspec-users] rspec2: autotest keeps rerunning failing tests

2010-08-30 Thread Justin Ko
h adding autotest-rails did not fix it for me. On Aug 30, 8:00 am, nathanvda wrote: > I can't explain why it suddenly did not work anymore, but i > readhttp://gist.github.com/365816 > and the only thing i needed to do to make it work was adding the > following dependencies to my gemfile:

Re: [rspec-users] rspec2: autotest keeps rerunning failing tests

2010-08-30 Thread nathanvda
I can't explain why it suddenly did not work anymore, but i read http://gist.github.com/365816 and the only thing i needed to do to make it work was adding the following dependencies to my gemfile: gem "autotest" gem "autotest-rails" The gem autotest-rails was already installed on my system. So c