mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-16 00:22:54 +11:00
16 lines
317 B
Python
16 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'
|