Skip to content

Commit 680caa4

Browse files
committed
fix: directory
1 parent d9e3125 commit 680caa4

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/test.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
ports:
1212
- 5432:5432
1313
env:
14-
POSTGRES_DB: db
14+
POSTGRES_DB: postgres
1515
POSTGRES_USER: postgres
16-
POSTGRES_PASSWORD: change-password
16+
POSTGRES_PASSWORD: postgres
1717
steps:
1818
- name: Checkout code
1919
uses: actions/checkout@v4
@@ -29,4 +29,7 @@ jobs:
2929
- name: Run tests
3030
env:
3131
DATABASE_HOST: localhost
32-
run: uv run -- pytest .
32+
DATABASE_USER: postgres
33+
DATABASE_PASSWORD: postgres
34+
DATABASE_NAME: postgres
35+
run: cd backend && uv run -- pytest .

0 commit comments

Comments
 (0)