add TEST_RUNNER specification to be django >1.6 friendly

This commit is contained in:
Jeffrey Forman 2014-12-21 19:24:35 -05:00
parent 1ff21cb4ab
commit e732cf3613
1 changed files with 3 additions and 1 deletions

View File

@ -65,11 +65,13 @@ TEMPLATE_DIRS = (
)
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.auth',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.admin',
'django.contrib.staticfiles',
'binder',
)
TEST_RUNNER = 'django.test.runner.DiscoverRunner'