mirror of
https://github.com/jazzband/django-dbtemplates.git
synced 2026-05-09 08:04:46 +00:00
38 lines
848 B
Python
38 lines
848 B
Python
DBTEMPLATES_CACHE_BACKEND = 'dummy://'
|
|
|
|
DATABASE_ENGINE = 'sqlite3'
|
|
# SQLite does not support removing unique constraints (see #28)
|
|
SOUTH_TESTS_MIGRATE = False
|
|
|
|
SITE_ID = 1
|
|
|
|
SECRET_KEY = 'something-something'
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'NAME': ':memory:',
|
|
}
|
|
}
|
|
|
|
INSTALLED_APPS = [
|
|
'django.contrib.contenttypes',
|
|
'django.contrib.sites',
|
|
'django.contrib.admin',
|
|
'django.contrib.auth',
|
|
'dbtemplates',
|
|
'django_jenkins',
|
|
]
|
|
|
|
TEMPLATE_LOADERS = (
|
|
'django.template.loaders.filesystem.Loader',
|
|
'django.template.loaders.app_directories.Loader',
|
|
'dbtemplates.loader.Loader',
|
|
)
|
|
|
|
JENKINS_TASKS = (
|
|
'django_jenkins.tasks.run_pyflakes',
|
|
'django_jenkins.tasks.run_pep8',
|
|
'django_jenkins.tasks.with_coverage',
|
|
'django_jenkins.tasks.django_tests',
|
|
)
|