mirror of
https://github.com/django/django.git
synced 2025-11-07 07:15:35 +00:00
Added GitHub action to run Selenium tests.
This commit is contained in:
committed by
Mariusz Felisiak
parent
5d20e02078
commit
549d6ffeb6
17
.github/workflows/data/test_postgres.py.tpl
vendored
Normal file
17
.github/workflows/data/test_postgres.py.tpl
vendored
Normal file
@@ -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",
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user