11 lines
202 B
Python
11 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",
|
|
)
|