Re: Continuous Integration command

2009-10-24 Thread garethr
On Oct 18, 6:08 pm, berto wrote: > On Oct 18, 7:24 am, Russell Keith-Magee > wrote: > > > On Sun, Oct 18, 2009 at 6:14 PM, berto wrote: > > > kGiven the fact that it takes a long time to setup and teardown > > Django's test suite, I feel that it is better to leave test execution > > as a manu

Re: Continuous Integration command

2009-10-18 Thread Dougal Matthews
2009/10/18 Dougal Matthews > > It had been discussed recently; > http://groups.google.com/group/django-developers/browse_thread/thread/825b6a1b676f24ed/c54aa0fd48ed7b8c?hl=en&lnk=gst&q=failed#c54aa0fd48ed7b8c > Link fail. This one will work better; http://groups.google.com/group/django-developers

Re: Continuous Integration command

2009-10-18 Thread Dougal Matthews
2009/10/18 Anssi Kaariainen > > > Is it possible to autorun only the failing tests? It would be very > useful (at least for me) if the following was supported > No. Not yet anyway... It had been discussed recently; http://groups.google.com/group/django-developers/browse_thread/thread/825b6a1b676

Re: Continuous Integration command

2009-10-18 Thread Anssi Kaariainen
On Oct 18, 8:08 pm, berto wrote: > Sounds like you're interpreting what I'm looking as a feature, a > bug.  :)  I want to write tests and see them fail continually until I > have written the code that makes them pass. Is it possible to autorun only the failing tests? It would be very useful (a

Re: Continuous Integration command

2009-10-18 Thread berto
On Oct 18, 7:24 am, Russell Keith-Magee wrote: > On Sun, Oct 18, 2009 at 6:14 PM, berto wrote: > > > On Oct 17, 5:33 pm, Russell Keith-Magee > > wrote: > >> I'd like to fix this problem, but while this problem exists, adding a > >> continuous integration server that crashes every time the devel

Re: Continuous Integration command

2009-10-18 Thread Thomas K. Adamcik
On Sat, Oct 17, 2009 at 09:59:38AM -0700, berto wrote: > I wanted to be able to run a project's test suite in the same manner > runserver restarts when a file is changed. I did not find this > feature in Django so I wrote the following code: Have you looked at http://github.com/lacostej/nosyd ye

Re: Continuous Integration command

2009-10-18 Thread Russell Keith-Magee
On Sun, Oct 18, 2009 at 6:14 PM, berto wrote: > > On Oct 17, 5:33 pm, Russell Keith-Magee > wrote: >> I'd like to fix this problem, but while this problem exists, adding a >> continuous integration server that crashes every time the developer >> makes a Syntax Error doesn't sound like an especia

Re: Continuous Integration command

2009-10-18 Thread berto
On Oct 17, 5:33 pm, Russell Keith-Magee wrote: > On Sun, Oct 18, 2009 at 12:59 AM, berto wrote: > > > Hello developers, > > > I wanted to be able to run a project's test suite in the same manner > > runserver restarts when a file is changed.  I did not find this > > feature in Django so I wrote

Re: Continuous Integration command

2009-10-17 Thread Russell Keith-Magee
On Sun, Oct 18, 2009 at 12:59 AM, berto wrote: > > Hello developers, > > I wanted to be able to run a project's test suite in the same manner > runserver restarts when a file is changed.  I did not find this > feature in Django so I wrote the following code: > > http://www.djangosnippets.org/snip

Continuous Integration command

2009-10-17 Thread berto
Hello developers, I wanted to be able to run a project's test suite in the same manner runserver restarts when a file is changed. I did not find this feature in Django so I wrote the following code: http://www.djangosnippets.org/snippets/1763/ I think it would be useful to others and would lik