summaryrefslogtreecommitdiff
path: root/.github/workflows/data/test_postgres.py.tpl
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/data/test_postgres.py.tpl')
-rw-r--r--.github/workflows/data/test_postgres.py.tpl17
1 files changed, 17 insertions, 0 deletions
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",
+ },
+}