diff options
| author | Nick Pope <nick@nickpope.me.uk> | 2023-12-15 13:44:35 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-15 14:44:35 +0100 |
| commit | 8709fe61ba79a3ea03cbce74b233e5ec28d80151 (patch) | |
| tree | e18ba9471afe874b59d0e5ee6937bf6ed71b989b /.github/workflows/data | |
| parent | e28bd6776dfedc1ad4dce4719e4303ca34019a83 (diff) | |
Fixed database connection for other alias in PostgreSQL tests on GitHub Actions.
Diffstat (limited to '.github/workflows/data')
| -rw-r--r-- | .github/workflows/data/test_postgres.py.tpl | 3 |
1 files changed, 3 insertions, 0 deletions
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, }, } |
