Skip to content

Commit c362ff7

Browse files
committed
Fix for database settings.
1 parent 904f315 commit c362ff7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
env:
3030
POSTGRES_USER: postgres
3131
POSTGRES_PASSWORD: postgres
32-
POSTGRES_DB: debug_toolbar
32+
POSTGRES_DB: postgres
3333
ports:
3434
- 5432/tcp
3535
options: >-

tests/settings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
"NAME": "debug_toolbar",
8787
"USER": "root",
8888
"PASSWORD": "debug_toolbar",
89-
"HOST": "127.0.0.1",
89+
"HOST": "localhost",
9090
"PORT": os.environ.get("POSTGRES_PORT", ""),
9191
}
9292
}
@@ -97,7 +97,7 @@
9797
"NAME": "debug_toolbar",
9898
"USER": "postgres",
9999
"PASSWORD": "postgres",
100-
"HOST": "127.0.0.1",
100+
"HOST": "localhost",
101101
"PORT": os.environ.get("MYSQL_PORT", ""),
102102
}
103103
}

0 commit comments

Comments
 (0)