Skip to content

Commit

Permalink
try removing password
Browse files Browse the repository at this point in the history
  • Loading branch information
RafaelCenzano committed Nov 23, 2024
1 parent 0594ae8 commit 1d70cc0
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ jobs:
image: postgres:16
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: test_db
ports:
- 5432:5432
Expand Down Expand Up @@ -44,11 +43,11 @@ jobs:
done
- name: Set up the Database
env:
DATABASE_URL: postgres://postgres:postgres@localhost:5432/test_db
DATABASE_URL: postgres://postgres@localhost:5432/test_db
run: |
python db_init.py create
- name: Running pytest
env:
DATABASE_URL: postgres://postgres:postgres@localhost:5432/test_db
DATABASE_URL: postgres://postgres@localhost:5432/test_db
run: |
python -m pytest tests/

0 comments on commit 1d70cc0

Please sign in to comment.