From d9458782bee1328f4a8481c7f3b87070eac9573b Mon Sep 17 00:00:00 2001 From: Dennis Thiessen Date: Tue, 3 Mar 2026 19:36:36 +0100 Subject: [PATCH] updated deploymentfile --- .gitea/workflows/deploy.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 31433ae..a25a99c 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -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