We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
docker/postgres/init.sql
tests/
1 parent 4e02c19 commit be39cdeCopy full SHA for be39cde
.github/workflows/unit-tests.yml
@@ -23,7 +23,7 @@ jobs:
23
24
strategy:
25
matrix:
26
- python-version: ['3.10', '3.13']
+ python-version: ["3.10", "3.13"]
27
steps:
28
- name: Checkout code
29
uses: actions/checkout@v4
@@ -34,7 +34,7 @@ jobs:
34
- name: Set postgres for tests
35
run: |
36
sudo apt-get update && sudo apt-get install -y postgresql-client
37
- PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d a2a_test -f ${{ github.workspace }}/docker/postgres/init.sql
+ PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d a2a_test -f ${{ github.workspace }}/tests/docker/postgres/init.sql
38
export POSTGRES_TEST_DSN="postgresql+asyncpg://postgres:postgres@localhost:5432/a2a_test"
39
40
- name: Install uv
docker/postgres/init.sql tests/docker/postgres/init.sqldocker/postgres/init.sql renamed to tests/docker/postgres/init.sql
0 commit comments