From 713c0d54177cb796ca9097314a5fe22a12a825a1 Mon Sep 17 00:00:00 2001 From: Changaco Date: Wed, 8 Jan 2025 11:06:01 +0100 Subject: [PATCH] update CI config --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4ffe1771d..2d3117330 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,7 +25,7 @@ jobs: sudo systemctl status postgresql@16-main.service ls -la /var/run/postgresql/ - name: Set libpq environment variables - run: echo PGPORT=5433 >>$GITHUB_ENV + run: echo PGPORT=5432 >>$GITHUB_ENV - name: Create the database user run: sudo -E -u postgres createuser --superuser $(whoami) - name: Create the test database @@ -49,7 +49,7 @@ jobs: - name: Install tox run: pip install tox - name: Write liberapay environment file for tests - run: echo 'DATABASE_URL="port=5433 dbname=liberapay_tests"' >tests/local.env + run: echo 'DATABASE_URL="port=5432 dbname=liberapay_tests"' >tests/local.env - name: Run the tests run: tox - name: Upload coverage reports to Codecov