add file_resubmit to DUMMY caches settings

This commit is contained in:
Hugh Rundle 2023-11-11 12:45:04 +11:00
parent d682e55812
commit f3fc5f6179
No known key found for this signature in database
GPG key ID: A7E35779918253F9

View file

@ -243,7 +243,11 @@ if env.bool("USE_DUMMY_CACHE", False):
CACHES = {
"default": {
"BACKEND": "django.core.cache.backends.dummy.DummyCache",
}
},
"file_resubmit": {
"BACKEND": "django.core.cache.backends.dummy.DummyCache",
"LOCATION": "/tmp/file_resubmit_tests/",
},
}
else:
CACHES = {