Skip to content

Commit 051a2b6

Browse files
committed
debug
1 parent cab33cf commit 051a2b6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/mongodb_settings.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
from pymongo.uri_parser import parse_uri
44

55
if mongodb_uri := os.getenv("MONGODB_URI"):
6+
print(mongodb_uri) # noqa: T201
67
db_settings = {
78
"ENGINE": "django_mongodb_backend",
89
"HOST": mongodb_uri,
@@ -15,6 +16,7 @@
1516
"default": {**db_settings, "NAME": "djangotests"},
1617
"other": {**db_settings, "NAME": "djangotests-other"},
1718
}
19+
print(DATABASES) # noqa: T201
1820
else:
1921
DATABASES = {
2022
"default": {

0 commit comments

Comments
 (0)