On 14.06.2012, at 12:35, Chris Wilson wrote: > Hi all, > > I've made some improvements (in my view) to the DjangoTestSuiteRunner. I > got tired of having to remember my test class names and of typing so much: > > ./manage.py test binder.BinderTest.test_can_create_users > > This new version searches for tests with the given name in all > INSTALLED_APPS, so you can just type this: > > ./manage.py test test_can_create_users > > You can find the source code here: > > https://github.com/aptivate/intranet-binder/blob/master/testing.py > > Is this something that might be interesting to add to Django core?
Yes! In fact there is a ticket for it already: https://code.djangoproject.com/ticket/17365 I've also released a almost similar tool called django-discover-runner based on Carl's work: http://pypi.python.org/pypi/django-discover-runner Jannis -- You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-developers?hl=en.
