From 6ce7887f1387855df2cda180da08277febedd02e Mon Sep 17 00:00:00 2001 From: Nasir Hussain Date: Wed, 23 Jan 2019 03:49:30 +0500 Subject: [2.2.x] Fixed #30111 -- Fixed AppRegistryNotReady error with django.contrib.postgres in INSTALLED_APPS. Regression in e192223ed996ed30fe83787efdfa7f2be6b1a2ee. Backport of 2804b8d2153505ec49b191db2168302dfb92c3af from master. --- tests/postgres_tests/integration_settings.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 tests/postgres_tests/integration_settings.py (limited to 'tests/postgres_tests/integration_settings.py') diff --git a/tests/postgres_tests/integration_settings.py b/tests/postgres_tests/integration_settings.py new file mode 100644 index 0000000000..c4ec0d1157 --- /dev/null +++ b/tests/postgres_tests/integration_settings.py @@ -0,0 +1,5 @@ +SECRET_KEY = 'abcdefg' + +INSTALLED_APPS = [ + 'django.contrib.postgres', +] -- cgit v1.3