Re: django test framework with no models.py

2010-12-30 Thread Seth Gordon
On 12/27/2010 09:58 AM, Henrik Genssen wrote: > Hi, > > I wanted to write a test for an app, that does not have a models.py itself. > Doing so I get: > django.core.exceptions.ImproperlyConfigured: App with label service could not > be found > > if I create a models.py with just a "pass" in it ev

Re: django test framework with no models.py

2010-12-27 Thread Karen Tracey
On Mon, Dec 27, 2010 at 9:58 AM, Henrik Genssen wrote: > I wanted to write a test for an app, that does not have a models.py itself. > Doing so I get: > django.core.exceptions.ImproperlyConfigured: App with label service could > not be found > > if I create a models.py with just a "pass" in it eve

django test framework with no models.py

2010-12-27 Thread Henrik Genssen
Hi, I wanted to write a test for an app, that does not have a models.py itself. Doing so I get: django.core.exceptions.ImproperlyConfigured: App with label service could not be found if I create a models.py with just a "pass" in it everything works as expected. I use Django 1.1 Is this a bug or