updated deploymentfile
Some checks failed
Deploy / lint (push) Successful in 5s
Deploy / test (push) Failing after 13s
Deploy / deploy (push) Has been skipped

This commit is contained in:
2026-03-03 19:36:36 +01:00
parent 8db078a0c2
commit d9458782be

View File

@@ -45,8 +45,6 @@ jobs:
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5433:5432
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
@@ -58,10 +56,10 @@ jobs:
- run: pip install -e ".[dev]"
- run: alembic upgrade head
env:
DATABASE_URL: postgresql+asyncpg://test_user:test_pass@127.0.0.1:5433/test_db
DATABASE_URL: postgresql+asyncpg://test_user:test_pass@postgres:5432/test_db
- run: pytest --tb=short
env:
DATABASE_URL: postgresql+asyncpg://test_user:test_pass@127.0.0.1:5433/test_db
DATABASE_URL: postgresql+asyncpg://test_user:test_pass@postgres:5432/test_db
- run: |
cd frontend
npm ci