push_notifs: Keep APNS_CERT_FILE as None in tests.

In 0b3f7a5a6 we started automatically setting this in dev if we
found a cert file in an appropriate place.  But for running tests,
we don't want such variability.  Set it back to None there.
This commit is contained in:
Greg Price
2023-11-06 11:51:04 -08:00
committed by Tim Abbott
parent 137505e2ad
commit d1e4347cb2

View File

@@ -156,6 +156,9 @@ INLINE_URL_EMBED_PREVIEW = False
HOME_NOT_LOGGED_IN = "/login/"
LOGIN_URL = "/accounts/login/"
# If dev_settings.py found a cert file to use here, ignore it.
APNS_CERT_FILE: Optional[str] = None
# By default will not send emails when login occurs.
# Explicitly set this to True within tests that must have this on.
SEND_LOGIN_EMAILS = False