Skip to content

Commit f10a02e

Browse files
committed
ci tests
1 parent f484da0 commit f10a02e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- 6432:6432
1414
env:
1515
POSTGRES_USER: krylosov-aa
16-
POSTGRES_PASSWORD:
16+
POSTGRES_PASSWORD: test
1717
POSTGRES_DB: test
1818
options: >-
1919
--health-cmd="pg_isready -U test -d test_db"

examples/database.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def create_engine(host: str) -> AsyncEngine:
1919

2020
# In production code, you will probably take these parameters from env
2121
pg_user = "krylosov-aa"
22-
pg_password = ""
22+
pg_password = "test"
2323
pg_port = 6432
2424
pg_db = "test"
2525
return create_async_engine(

0 commit comments

Comments
 (0)