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 cab33cf commit 051a2b6Copy full SHA for 051a2b6
.github/workflows/mongodb_settings.py
@@ -3,6 +3,7 @@
3
from pymongo.uri_parser import parse_uri
4
5
if mongodb_uri := os.getenv("MONGODB_URI"):
6
+ print(mongodb_uri) # noqa: T201
7
db_settings = {
8
"ENGINE": "django_mongodb_backend",
9
"HOST": mongodb_uri,
@@ -15,6 +16,7 @@
15
16
"default": {**db_settings, "NAME": "djangotests"},
17
"other": {**db_settings, "NAME": "djangotests-other"},
18
}
19
+ print(DATABASES) # noqa: T201
20
else:
21
DATABASES = {
22
"default": {
0 commit comments