We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aae03b9 commit 15176c4Copy full SHA for 15176c4
tests/settings.py
@@ -16,4 +16,7 @@
16
}
17
18
19
-SECRET_KEY = "django_tests_secret_key"
+try:
20
+ from local_settings import SECRET_KEY
21
+except ImportError:
22
+ SECRET_KEY = "django_tests_secret_key"
0 commit comments