How to test django application placed in subfolder?

What error do you get? And what do you have under your INSTALLED_APPS in settings.py?

if you have something like

INSTALLED_APPS = (
    'django.contrib.auth',
    ...
    'apps.appname1',
    'apps.appname2',
)

and __init__.py in the apps directory then it should work.


Just a note, the settings.py file contains a tuple so the termination character should be ')' not '}'


You need both these files under your app folder:

__init__.py
models.py

They can be empty.