mirror of
https://github.com/django/django.git
synced 2025-11-17 18:48:15 +00:00
Some checks failed
Docs / spelling (push) Waiting to run
Docs / blacken-docs (push) Waiting to run
Docs / lint-docs (push) Waiting to run
Linters / flake8 (push) Has been cancelled
Linters / isort (push) Has been cancelled
Linters / black (push) Has been cancelled
Tests / Windows, SQLite, Python 3.13 (push) Has been cancelled
Tests / JavaScript tests (push) Has been cancelled
31 lines
1,022 B
Python
31 lines
1,022 B
Python
# This is an example test settings file for use with the Django test suite.
|
|
#
|
|
# The 'sqlite3' backend requires only the ENGINE setting (an in-
|
|
# memory database will be used). All other backends will require a
|
|
# NAME and potentially authentication information. See the
|
|
# following section in the docs for more information:
|
|
#
|
|
# https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/unit-tests/
|
|
#
|
|
# The different databases that Django supports behave differently in certain
|
|
# situations, so it is recommended to run the test suite against as many
|
|
# database backends as possible. You may want to create a separate settings
|
|
# file for each of the backends you test against.
|
|
|
|
DATABASES = {
|
|
"default": {
|
|
"ENGINE": "django.db.backends.sqlite3",
|
|
},
|
|
"other": {
|
|
"ENGINE": "django.db.backends.sqlite3",
|
|
},
|
|
}
|
|
|
|
SECRET_KEY = "django_tests_secret_key"
|
|
|
|
# Use a fast hasher to speed up tests.
|
|
PASSWORD_HASHERS = [
|
|
"django.contrib.auth.hashers.MD5PasswordHasher",
|
|
]
|
|
|
|
USE_TZ = False
|