summaryrefslogtreecommitdiff
path: root/tests/postgres_tests/integration_settings.py
diff options
context:
space:
mode:
authorNasir Hussain <nasirhjafri@gmail.com>2019-01-23 03:49:30 +0500
committerTim Graham <timograham@gmail.com>2019-01-22 17:49:30 -0500
commit2804b8d2153505ec49b191db2168302dfb92c3af (patch)
treec683570a1ec7f6939d968c7ac500f1c52809d855 /tests/postgres_tests/integration_settings.py
parentd02b2aa11e5b6c351a9a2c0673c23569889f90d6 (diff)
Fixed #30111 -- Fixed AppRegistryNotReady error with django.contrib.postgres in INSTALLED_APPS.
Regression in e192223ed996ed30fe83787efdfa7f2be6b1a2ee.
Diffstat (limited to 'tests/postgres_tests/integration_settings.py')
-rw-r--r--tests/postgres_tests/integration_settings.py5
1 files changed, 5 insertions, 0 deletions
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',
+]