summaryrefslogtreecommitdiff
path: root/.github/workflows/data/test_postgres.py.tpl
blob: 8fbe8c0e6e7b3d688baba12af1d1842e30f27d34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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",
    },
}