forked from github/plane
* dev: update settings file structure and added extra settings for CORS * dev: remove WEB_URL variable and add celery integration for sentry * dev: aws and minio settings * dev: add cors origins to env * dev: update settings
10 lines
195 B
Python
10 lines
195 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",)
|