This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
auf-auf-django-secretquestions/auf/django/secretquestions/tests/settings.py

18 lines
476 B
Python

# -*- coding: utf-8 -*-
USE_I18N = False
SECRET_KEY = 'secret'
ROOT_URLCONF = 'auf.django.secretquestions.tests.urls'
DATABASES = {'default':
{'ENGINE': 'django.db.backends.sqlite3', 'NAME': ':memory:', }}
INSTALLED_APPS = ('django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.admin',
'south',
'auf.django.secretquestions',)