summaryrefslogtreecommitdiff
path: root/.github/workflows/data/test_postgis.py.tpl
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/data/test_postgis.py.tpl')
-rw-r--r--.github/workflows/data/test_postgis.py.tpl20
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/data/test_postgis.py.tpl b/.github/workflows/data/test_postgis.py.tpl
new file mode 100644
index 0000000000..684972c41e
--- /dev/null
+++ b/.github/workflows/data/test_postgis.py.tpl
@@ -0,0 +1,20 @@
+from test_sqlite import * # NOQA
+
+DATABASES = {
+ "default": {
+ "ENGINE": "django.contrib.gis.db.backends.postgis",
+ "USER": "user",
+ "NAME": "geodjango",
+ "PASSWORD": "postgres",
+ "HOST": "localhost",
+ "PORT": 5432,
+ },
+ "other": {
+ "ENGINE": "django.contrib.gis.db.backends.postgis",
+ "USER": "user",
+ "NAME": "geodjango2",
+ "PASSWORD": "postgres",
+ "HOST": "localhost",
+ "PORT": 5432,
+ },
+}