mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
12 lines
202 B
Python
12 lines
202 B
Python
"""Test Settings"""
|
|
from .common import * # noqa
|
|
|
|
DEBUG = True
|
|
|
|
# Send it in a dummy outbox
|
|
EMAIL_BACKEND = "django.core.mail.backends.locmem.EmailBackend"
|
|
|
|
INSTALLED_APPS.append(
|
|
"plane.tests",
|
|
)
|