From 6cd65a3ef1901f7b45ea6d8d90060f25c93e3b54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Mih=C3=A1lik?= Date: Sun, 15 Dec 2024 12:25:26 +0100 Subject: [PATCH] Set up email error reporting on test (#486) --- webstrom/settings_test.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/webstrom/settings_test.py b/webstrom/settings_test.py index 5622270..478dbfc 100644 --- a/webstrom/settings_test.py +++ b/webstrom/settings_test.py @@ -2,7 +2,7 @@ from .settings import * -DEBUG = True +DEBUG = False ALLOWED_HOSTS = [ "localhost", @@ -31,3 +31,10 @@ EMAIL_PORT = 587 EMAIL_USE_TLS = True EMAIL_TIMEOUT = 10 + +SERVER_EMAIL = DEFAULT_FROM_EMAIL + +ADMINS = [ + ("Martin Mihálik", "mihalik@strom.sk"), + ("Peter Kovács", "kovacs@strom.sk"), +]