mirror of
https://github.com/lemeow125/DRF_Template.git
synced 2025-09-18 05:29:37 +08:00
20 lines
384 B
Python
20 lines
384 B
Python
"""
|
|
Minimal Django settings file for tests
|
|
"""
|
|
|
|
from core.settings import * # noqa: F403
|
|
|
|
# Override database to SQLite
|
|
DATABASES = {
|
|
"default": {
|
|
"ENGINE": "django.db.backends.sqlite3",
|
|
"NAME": BASE_DIR / "db.sqlite3", # noqa: F405
|
|
}
|
|
}
|
|
|
|
# Use dummy cache
|
|
CACHES = {
|
|
"default": {
|
|
"BACKEND": "django.core.cache.backends.dummy.DummyCache",
|
|
}
|
|
}
|