summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathieu Pillard <mpillard@mozilla.com>2022-10-31 12:40:39 +0100
committerMathieu Pillard <mpillard@mozilla.com>2022-10-31 12:40:39 +0100
commit26ab96629d6a2428740a7589678c7b09fe7e7307 (patch)
tree63b522052c14e9f454e4c821857ef96e426dac65
parent8a0b706b9b2878b3ce2ee1da41a5d2f0e43981a5 (diff)
downloaddjango-compressor-simplify-settings.tar.gz
Simplify test settings filesimplify-settings
-rw-r--r--compressor/test_settings.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/compressor/test_settings.py b/compressor/test_settings.py
index 68b0152..3a663c0 100644
--- a/compressor/test_settings.py
+++ b/compressor/test_settings.py
@@ -2,7 +2,6 @@ import os
TEST_DIR = os.path.join(os.path.abspath(os.path.dirname(__file__)), "tests")
-
CACHES = {
"default": {
"BACKEND": "django.core.cache.backends.locmem.LocMemCache",
@@ -31,7 +30,6 @@ STATICFILES_FINDERS = [
STATIC_URL = "/static/"
-
STATIC_ROOT = os.path.join(TEST_DIR, "static")
TEMPLATES = [
@@ -56,9 +54,3 @@ TEMPLATES = [
],
},
]
-
-SECRET_KEY = "iufoj=mibkpdz*%bob952x(%49rqgv8gg45k36kjcg76&-y5=!"
-
-PASSWORD_HASHERS = ("django.contrib.auth.hashers.UnsaltedMD5PasswordHasher",)
-
-MIDDLEWARE_CLASSES = []