From 549d6ffeb6d626b023acc40c3bb2093b4b25b3d6 Mon Sep 17 00:00:00 2001 From: sarahboyce Date: Mon, 12 Jun 2023 17:00:33 +0200 Subject: Added GitHub action to run Selenium tests. --- .github/workflows/data/test_postgres.py.tpl | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/data/test_postgres.py.tpl (limited to '.github/workflows/data/test_postgres.py.tpl') diff --git a/.github/workflows/data/test_postgres.py.tpl b/.github/workflows/data/test_postgres.py.tpl new file mode 100644 index 0000000000..8fbe8c0e6e --- /dev/null +++ b/.github/workflows/data/test_postgres.py.tpl @@ -0,0 +1,17 @@ +from test_sqlite import * # NOQA + +DATABASES = { + "default": { + "ENGINE": "django.db.backends.postgresql", + "USER": "user", + "NAME": "django", + "PASSWORD": "postgres", + "HOST": "localhost", + "PORT": 5432, + }, + "other": { + "ENGINE": "django.db.backends.postgresql", + "USER": "user", + "NAME": "django2", + }, +} -- cgit v1.3