diff --git a/cof/settings/prod.py b/cof/settings/prod.py
index 9e355ccb..8db28958 100644
--- a/cof/settings/prod.py
+++ b/cof/settings/prod.py
@@ -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"