1. # This is an example test settings file for use with the Django test suite.
    
  2. #
    
  3. # The 'sqlite3' backend requires only the ENGINE setting (an in-
    
  4. # memory database will be used). All other backends will require a
    
  5. # NAME and potentially authentication information. See the
    
  6. # following section in the docs for more information:
    
  7. #
    
  8. # https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/unit-tests/
    
  9. #
    
  10. # The different databases that Django supports behave differently in certain
    
  11. # situations, so it is recommended to run the test suite against as many
    
  12. # database backends as possible.  You may want to create a separate settings
    
  13. # file for each of the backends you test against.
    
  14. 
    
  15. DATABASES = {
    
  16.     "default": {
    
  17.         "ENGINE": "django.db.backends.sqlite3",
    
  18.     },
    
  19.     "other": {
    
  20.         "ENGINE": "django.db.backends.sqlite3",
    
  21.     },
    
  22. }
    
  23. 
    
  24. SECRET_KEY = "django_tests_secret_key"
    
  25. 
    
  26. # Use a fast hasher to speed up tests.
    
  27. PASSWORD_HASHERS = [
    
  28.     "django.contrib.auth.hashers.MD5PasswordHasher",
    
  29. ]
    
  30. 
    
  31. DEFAULT_AUTO_FIELD = "django.db.models.AutoField"
    
  32. 
    
  33. USE_TZ = False