diff options
| author | sarahboyce <sarahvboyce95@gmail.com> | 2023-06-12 17:00:33 +0200 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2023-06-15 10:49:37 +0200 |
| commit | 549d6ffeb6d626b023acc40c3bb2093b4b25b3d6 (patch) | |
| tree | 82ad2db753ece81f8f75c3a15cf160c4d4415768 /.github/workflows/data | |
| parent | 5d20e0207867615f6989714261ea3c0a3eb85d88 (diff) | |
Added GitHub action to run Selenium tests.
Diffstat (limited to '.github/workflows/data')
| -rw-r--r-- | .github/workflows/data/test_postgres.py.tpl | 17 |
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", + }, +} |
