We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af672fc commit e62a61aCopy full SHA for e62a61a
.github/workflows/mongodb_settings.py
@@ -5,9 +5,6 @@
5
6
PARSED_URI = parse_uri(os.getenv("MONGODB_URI")) if os.getenv("MONGODB_URI") else {}
7
8
-if not PARSED_URI:
9
- print("MONGODB_URI not found; please check if environment variable set")
10
-
11
DATABASES = {
12
"default": {
13
**PARSED_URI,
@@ -20,6 +17,7 @@
20
17
"NAME": "djangotests-other",
21
18
},
22
19
}
+print(DATABASES)
23
DEFAULT_AUTO_FIELD = "django_mongodb_backend.fields.ObjectIdAutoField"
24
PASSWORD_HASHERS = ("django.contrib.auth.hashers.MD5PasswordHasher",)
25
SECRET_KEY = "django_tests_secret_key"
0 commit comments