django-axes/axes/test_settings_cache.py

12 lines
234 B
Python
Raw Normal View History

from __future__ import unicode_literals
from .test_settings import * # pylint: disable=unused-wildcard-import
AXES_CACHE = 'axes'
CACHES = {
'axes': {
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache'
}
}