mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 16:12:51 +11:00
17 lines
317 B
Python
17 lines
317 B
Python
|
from pastebin.conf.settings import *
|
||
|
|
||
|
DEBUG = False
|
||
|
TEMPLATE_DEBUG = DEBUG
|
||
|
|
||
|
DATABASES = {
|
||
|
'default': {
|
||
|
'ENGINE': 'django.db.backends.sqlite3',
|
||
|
'NAME': ':memory:',
|
||
|
}
|
||
|
}
|
||
|
ROOT_URLCONF = 'pastebin.conf.test.urls'
|
||
|
|
||
|
INSTALLED_APPS += ('django_nose',)
|
||
|
|
||
|
TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'
|