File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
readthedocs/proxito/tests Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -232,6 +232,11 @@ def test_project_nginx_serving_unicode_filename(self):
232
232
PYTHON_MEDIA = False ,
233
233
PUBLIC_DOMAIN = 'readthedocs.io' ,
234
234
RTD_BUILD_MEDIA_STORAGE = 'readthedocs.rtd_tests.storage.BuildMediaFileSystemStorageTest' ,
235
+ CACHES = {
236
+ 'default' : {
237
+ 'BACKEND' : 'django.core.cache.backends.dummy.DummyCache' ,
238
+ }
239
+ }
235
240
)
236
241
class TestAdditionalDocViews (BaseDocServing ):
237
242
# Test that robots.txt and sitemap.xml work
@@ -326,7 +331,8 @@ def test_directory_indexes_get_args(self):
326
331
self .project .versions .update (active = True , built = True )
327
332
# Confirm we've serving from storage for the `index-exists/index.html` file
328
333
response = self .client .get (
329
- reverse ('proxito_404_handler' , kwargs = {'proxito_path' : '/en/latest/index-exists?foo=bar' }),
334
+ reverse ('proxito_404_handler' , kwargs = {
335
+ 'proxito_path' : '/en/latest/index-exists?foo=bar' }),
330
336
HTTP_HOST = 'project.readthedocs.io' ,
331
337
)
332
338
self .assertEqual (
You can’t perform that action at this time.
0 commit comments