summaryrefslogtreecommitdiffstats
path: root/settings.py
diff options
context:
space:
mode:
authorFrank Vanderham <twelve.eighty@gmail.com>2018-04-23 20:51:43 -0600
committerJelle van der Waa <jelle@vdwaa.nl>2019-01-21 21:19:58 +0100
commit708442da33d2ba4d87dd3958e4c455becb2c5990 (patch)
tree334c3759490678bfce876dd7fcb7dfbb1605ca25 /settings.py
parent6cbf136e0bc8ed5698ce205f771e2f36e6bbd609 (diff)
downloadarchweb-708442da33d2ba4d87dd3958e4c455becb2c5990.tar.gz
archweb-708442da33d2ba4d87dd3958e4c455becb2c5990.zip
Remove false positives in tests due to Django bug
By reordering INSTALLED_APPS, a large amount of false positives that were generated during automated tests are avoided. This is the stated (and otherwise harmless) work-around as per the Django bug: https://code.djangoproject.com/ticket/10827
Diffstat (limited to 'settings.py')
-rw-r--r--settings.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings.py b/settings.py
index be98d5b1..a414aded 100644
--- a/settings.py
+++ b/settings.py
@@ -85,8 +85,8 @@ X_FRAME_OPTIONS = 'DENY'
TEST_RUNNER = 'django.test.runner.DiscoverRunner'
INSTALLED_APPS = (
- 'django.contrib.auth',
'django.contrib.contenttypes',
+ 'django.contrib.auth',
'django.contrib.messages',
'django.contrib.sessions',
'django.contrib.sites',