dpaste/dpaste/settings/tests.py

10 lines
182 B
Python

"""
Settings for the testsuite runs.
"""
from .base import * # noqa
SECRET_KEY = "test-key"
DATABASES = {"default": {"ENGINE": "django.db.backends.sqlite3", "NAME": ":memory:"}}