From 92f860e3f4a387e06ea59753ec0a981c0aff2daa Mon Sep 17 00:00:00 2001 From: nessita <124304+nessita@users.noreply.github.com> Date: Thu, 19 Sep 2024 10:37:13 -0300 Subject: Refs #35734 -- Added entry to scheduled tests workflow to test newer PostgreSQL versions. --- .github/workflows/data/test_postgres.py.tpl | 4 ++++ 1 file changed, 4 insertions(+) (limited to '.github/workflows/data') diff --git a/.github/workflows/data/test_postgres.py.tpl b/.github/workflows/data/test_postgres.py.tpl index e121946d3f..15dfa0d62e 100644 --- a/.github/workflows/data/test_postgres.py.tpl +++ b/.github/workflows/data/test_postgres.py.tpl @@ -1,3 +1,4 @@ +import os from test_sqlite import * # NOQA DATABASES = { @@ -8,6 +9,9 @@ DATABASES = { "PASSWORD": "postgres", "HOST": "localhost", "PORT": 5432, + "OPTIONS": { + "server_side_binding": os.getenv("SERVER_SIDE_BINDING") == "1", + }, }, "other": { "ENGINE": "django.db.backends.postgresql", -- cgit v1.3