From 8709fe61ba79a3ea03cbce74b233e5ec28d80151 Mon Sep 17 00:00:00 2001 From: Nick Pope Date: Fri, 15 Dec 2023 13:44:35 +0000 Subject: [PATCH] Fixed database connection for other alias in PostgreSQL tests on GitHub Actions. --- .github/workflows/data/test_postgres.py.tpl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/data/test_postgres.py.tpl b/.github/workflows/data/test_postgres.py.tpl index 8fbe8c0e6e..e121946d3f 100644 --- a/.github/workflows/data/test_postgres.py.tpl +++ b/.github/workflows/data/test_postgres.py.tpl @@ -13,5 +13,8 @@ DATABASES = { "ENGINE": "django.db.backends.postgresql", "USER": "user", "NAME": "django2", + "PASSWORD": "postgres", + "HOST": "localhost", + "PORT": 5432, }, }