Skip to content

Commit 1d70cc0

Browse files
committed
try removing password
1 parent 0594ae8 commit 1d70cc0

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/pytest.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ jobs:
1414
image: postgres:16
1515
env:
1616
POSTGRES_USER: postgres
17-
POSTGRES_PASSWORD: postgres
1817
POSTGRES_DB: test_db
1918
ports:
2019
- 5432:5432
@@ -44,11 +43,11 @@ jobs:
4443
done
4544
- name: Set up the Database
4645
env:
47-
DATABASE_URL: postgres://postgres:postgres@localhost:5432/test_db
46+
DATABASE_URL: postgres://postgres@localhost:5432/test_db
4847
run: |
4948
python db_init.py create
5049
- name: Running pytest
5150
env:
52-
DATABASE_URL: postgres://postgres:postgres@localhost:5432/test_db
51+
DATABASE_URL: postgres://postgres@localhost:5432/test_db
5352
run: |
5453
python -m pytest tests/

0 commit comments

Comments
 (0)