1
0
Fork 0
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:
Bram Wiepjes 2019-07-11 19:04:19 +02:00
parent 24b738045a
commit 69585159a6
2 changed files with 19 additions and 0 deletions
.gitlab-ci.yml
backend/src/baserow/config/settings

View file

@ -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

View file

@ -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',
}
}