Skip to content

Commit

Permalink
Set up email error reporting on test (#486)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmihalik authored Dec 15, 2024
1 parent 567bef6 commit 6cd65a3
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion webstrom/settings_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from .settings import *

DEBUG = True
DEBUG = False

ALLOWED_HOSTS = [
"localhost",
Expand Down Expand Up @@ -31,3 +31,10 @@
EMAIL_PORT = 587
EMAIL_USE_TLS = True
EMAIL_TIMEOUT = 10

SERVER_EMAIL = DEFAULT_FROM_EMAIL

ADMINS = [
("Martin Mihálik", "[email protected]"),
("Peter Kovács", "[email protected]"),
]

0 comments on commit 6cd65a3

Please sign in to comment.