mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-04 21:25:24 +00:00
added postgres to backend pytest gitlab ci
This commit is contained in:
parent
24b738045a
commit
69585159a6
2 changed files with 19 additions and 0 deletions
|
@ -35,6 +35,13 @@ backend-flake8:
|
|||
backend-pytest:
|
||||
stage: test
|
||||
image: python:3.6
|
||||
services:
|
||||
- name: postgres:11.3
|
||||
alias: db
|
||||
variables:
|
||||
POSTGRES_USER: baserow
|
||||
POSTGRES_PASSWORD: baserow
|
||||
POSTGRES_DB: baserow
|
||||
script:
|
||||
- make install-backend-dependencies
|
||||
- export PYTHONPATH=$CI_PROJECT_DIR/backend/src
|
||||
|
|
|
@ -1 +1,13 @@
|
|||
from .base import * # noqa: F403, F401
|
||||
|
||||
|
||||
DATABASES = {
|
||||
'default': {
|
||||
'ENGINE': 'django.db.backends.postgresql_psycopg2',
|
||||
'NAME': 'baserow',
|
||||
'USER': 'baserow',
|
||||
'PASSWORD': 'baserow',
|
||||
'HOST': 'db',
|
||||
'PORT': '5432',
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue