Fix caching problems in unit tests

This commit is contained in:
Raphael Michel
2016-11-08 16:20:03 +01:00
parent 6adcf4bc7c
commit 4c80ec17bf
3 changed files with 27 additions and 3 deletions

View File

@@ -28,7 +28,6 @@ SESSION_ENGINE = "django.contrib.sessions.backends.db"
HAS_REDIS = False
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
'LOCATION': 'unique-snowflake',
'BACKEND': 'django.core.cache.backends.dummy.DummyCache',
}
}