Short question: How can I stop a rspec rake task without having to wait for about 5 minutes (1 ctrl-c keypress autorepeat for every test case)? -- View this message in context: http://www.nabble.com/Halting-rake-rspec-tp25459998p25459998.html Sent from the rspec-users mailing list archive at Nabble.com.
Right now there is no way. Please file a feature request at http://rspec.lighthouseapp.com. Cheers, David On Tue, Sep 15, 2009 at 2:12 PM, Anton Trapp <tmp008 at allproducts.info> wrote:> > Short question: How can I stop a rspec rake task without having to wait for > about 5 minutes (1 ctrl-c keypress autorepeat for every test case)? > -- > View this message in context: http://www.nabble.com/Halting-rake-rspec-tp25459998p25459998.html > Sent from the rspec-users mailing list archive at Nabble.com. > > _______________________________________________ > rspec-users mailing list > rspec-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/rspec-users >
On Tue, Sep 15, 2009 at 3:12 PM, Anton Trapp <tmp008 at allproducts.info> wrote:> > Short question: How can I stop a rspec rake task without having to wait for > about 5 minutes (1 ctrl-c keypress autorepeat for every test case)?1. ps ax | grep rake 2. (look at the process id in the lefthand column) 3. kill -9 [process id]>8->-- Have Fun, Steve Eley (sfeley at gmail.com) ESCAPE POD - The Science Fiction Podcast Magazine http://www.escapepod.org
Unix always has an answer =) Stephen Eley escribi?:> On Tue, Sep 15, 2009 at 3:12 PM, Anton Trapp <tmp008 at allproducts.info> wrote: > >> Short question: How can I stop a rspec rake task without having to wait for >> about 5 minutes (1 ctrl-c keypress autorepeat for every test case)? >> > > 1. ps ax | grep rake > 2. (look at the process id in the lefthand column) > 3. kill -9 [process id] > > >> 8-> >>