diff options
Diffstat (limited to '.github/workflows/data')
| -rw-r--r-- | .github/workflows/data/test_postgis.py.tpl | 20 |
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, + }, +} |
