Skip to content

Commit

Permalink
Hmm, how did this even work at all before
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiask committed Jan 31, 2019
1 parent bf6aafe commit 6041214
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/testapp/settings.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import os

SITE_ID = 1

DATABASES = {"default": {"ENGINE": "django.db.backends.sqlite3", "NAME": ":memory:"}}

INSTALLED_APPS = [
Expand Down Expand Up @@ -43,12 +41,11 @@
}
]
DEFAULT_FROM_EMAIL = "no-reply@example.com"
MIDDLEWARE_CLASSES = (
MIDDLEWARE_CLASSES = MIDDLEWARE = (
"django.middleware.common.CommonMiddleware",
"django.contrib.sessions.middleware.SessionMiddleware",
"django.middleware.csrf.CsrfViewMiddleware",
"django.contrib.auth.middleware.AuthenticationMiddleware",
"django.contrib.messages.middleware.MessageMiddleware",
"django.contrib.auth.middleware.SessionAuthenticationMiddleware",
)
MIGRATION_MODULES = {"page": "testapp.migrate.page"}

0 comments on commit 6041214

Please sign in to comment.