Files
vrobbler/vrobbler/settings-testing.py
2026-03-02 09:19:36 -05:00

22 lines
397 B
Python

from vrobbler.settings import *
TESTING = True
DATABASES = {
"default": {
"ENGINE": "django.db.backends.sqlite3",
"NAME": "/tmp/testdb.sqlite3",
}
}
CACHES = {
"default": {
"BACKEND": "django.core.cache.backends.locmem.LocMemCache",
"LOCATION": "unique-snowflake",
}
}
PASSWORD_HASHERS = [
"django.contrib.auth.hashers.MD5PasswordHasher",
]