enable the "events" app in CI

This commit is contained in:
Martin Pépin 2019-10-05 17:50:28 +02:00
parent 34e552f760
commit 8119591c62
No known key found for this signature in database
GPG key ID: E7520278B1774448

View file

@ -6,12 +6,14 @@ The settings that are not listed here are imported from .common
import os
from .common import * # NOQA
from .common import BASE_DIR, import_secret
from .common import BASE_DIR, INSTALLED_APPS, TESTING, import_secret
DEBUG = False
ALLOWED_HOSTS = ["cof.ens.fr", "www.cof.ens.fr", "dev.cof.ens.fr"]
if TESTING:
INSTALLED_APPS.append("events")
STATIC_ROOT = os.path.join(
os.path.dirname(os.path.dirname(BASE_DIR)), "public", "gestion", "static"