diff --git a/runtests.py b/runtests.py index 6101052..be8937e 100755 --- a/runtests.py +++ b/runtests.py @@ -47,7 +47,14 @@ if not settings.configured: ], ROOT_URLCONF='tos.tests.test_urls', LOGIN_URL='/login/', - SITE_ID='1' + SITE_ID='1', + CACHES = { + 'tos': { + 'BACKEND': 'django.core.cache.backends.locmem.LocMemCache', + 'LOCATION': 'unique-snowflake', + } + }, + TOS_CACHE_NAME = 'tos' )