Nose testing sutie

This commit is contained in:
reverend 2021-10-02 01:30:53 +02:00
parent 6678f8ff02
commit 8d96214a92
1 changed files with 9 additions and 1 deletions

View File

@ -49,7 +49,15 @@ INSTALLED_APPS = [
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles'
'django.contrib.staticfiles',
'django_nose'
]
TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'
NOSE_ARGS = [
'--with-coverage',
'--cover-package=lostplaces',
]
MIDDLEWARE = [