testsettings.py 183 B

123456789101112
  1. DATABASES = {
  2. 'default': {
  3. 'ENGINE': 'django.db.backends.sqlite3',
  4. 'NAME': ':memory:',
  5. }
  6. }
  7. INSTALLED_APPS = (
  8. 'netfields',
  9. )
  10. SECRET_KEY = "notimportant"