Use default file storage in CI

This commit is contained in:
Frank Wiles
2023-02-27 10:00:31 -06:00
parent b41769aa16
commit 0e51087e82

View File

@@ -1,5 +1,4 @@
import logging
from .settings import * # noqa
@@ -30,3 +29,6 @@ GITHUB_TOKEN = "changeme"
# Make content relative to the project root
BASE_CONTENT = BASE_DIR / "core/tests/content"
# Don't use S3 in tests
DEFAULT_FILE_STORAGE = "django.core.files.storage.FileSystemStorage"