1
0
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:
sarahboyce
2023-06-12 17:00:33 +02:00
committed by Mariusz Felisiak
parent 5d20e02078
commit 549d6ffeb6
2 changed files with 90 additions and 0 deletions

View 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",
},
}