mirror of
https://github.com/makeplane/plane.git
synced 2026-07-11 04:51:55 +02: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",
|
|
)
|