Hi, I think it is better to do what Josh mentioned in https://code.djangoproject.com/ticket/30605#comment:2.
To elaborate on how this looks in pratice: Write a file called ``settings_test.py`` or such, containing something like this: ``` from .settings import * DEFAULT_FILE_STORAGE = 'inmemorystorage.InMemoryStorage' # More test-specific settings here ``` And run your tests with this settings module (using ``manage.py --settings settings_test test`` or by setting the ``DJANGO_SETTINGS_MODULE`` env var). René -- You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/django-developers. To view this discussion on the web visit https://groups.google.com/d/msgid/django-developers/d60d44e9-06f1-d883-f041-b1e9c68f2245%40fleschenberg.net. For more options, visit https://groups.google.com/d/optout.
