I am using the storages.backends.s3boto.S3BotoStorage
for my DEFAULT_FILE_STORAGE
in a Django project.
Ideally I would like to either use the default FileSystemStorage
during unit tests or perhaps create a temporary bucket that is deleted on the conclusion of the tests.
What is the best way to accomplish this?