Added nose

This commit is contained in:
Tyrel Souza 2015-09-08 12:50:03 -05:00
parent 3e9a9fee4d
commit 5fb32f1c4f
2 changed files with 8 additions and 1 deletions

View File

@ -38,11 +38,15 @@ INSTALLED_APPS = (
'django.contrib.messages',
'django.contrib.staticfiles',
'django.contrib.gis',
'django_nose',
'django_extensions',
'home',
'tracking',
)
MIDDLEWARE_CLASSES = (
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
@ -106,3 +110,5 @@ USE_TZ = True
# https://docs.djangoproject.com/en/1.8/howto/static-files/
STATIC_URL = '/static/'
TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'

View File

@ -1,4 +1,5 @@
Django==1.8.4
django-nose
django-extensions
coverage
xmltodict