Add STATICFILES_STORAGE setting for Travis tests

This commit is contained in:
Claude Paroz 2017-07-18 11:36:36 +02:00
parent 72226fa405
commit b00f3e12a8

View file

@ -155,5 +155,6 @@ CHARGE_SHEET_TITLE = "Feuille de charge pour l'année scolaire 2017-2018"
if 'TRAVIS' in os.environ:
SECRET_KEY = 'secretkeyfortravistests'
STATICFILES_STORAGE = 'django.contrib.staticfiles.storage.StaticFilesStorage'
else:
from .local_settings import *