Re: A setting that skips tests for thirdparty applications

2010-07-02 Thread lakin
> Thanks for the ticket and patch.  However, I for one am struggling to > understand why it is so painful to do: > >   ./manage.py test app1 app2 app3 app4 As someone who works on quite a few projects, it's painful to have to remember the exact app names for all 10 projects that I frequently work

Re: A setting that skips tests for thirdparty applications

2010-07-02 Thread John-Scott Atlakson
On Jul 2, 2010, at 7:14 PM, Luke Plant wrote: > On Fri, 2010-07-02 at 14:48 -0700, lakin wrote: >> http://code.djangoproject.com/ticket/13873 >> >> As part of a normal testing routine, I find it annoying that django >> tests ALL of the applications listed in INSTALLED_APPS. While I do >> want it

Re: A setting that skips tests for thirdparty applications

2010-07-02 Thread Luke Plant
On Fri, 2010-07-02 at 14:48 -0700, lakin wrote: > http://code.djangoproject.com/ticket/13873 > > As part of a normal testing routine, I find it annoying that django > tests ALL of the applications listed in INSTALLED_APPS. While I do > want it to test most of them, I rarely want it to test third

A setting that skips tests for thirdparty applications

2010-07-02 Thread lakin
http://code.djangoproject.com/ticket/13873 As part of a normal testing routine, I find it annoying that django tests ALL of the applications listed in INSTALLED_APPS. While I do want it to test most of them, I rarely want it to test third party applications. This ticket has a patch that adds a T