Something went wrong on our end
-
Erwan Rouchet authoredErwan Rouchet authored
.gitlab-ci.yml 495 B
stages:
- test
backend-tests:
stage: test
image: python:3.5-alpine
services:
- postgres:latest
- redis:latest
variables:
# For the postgres image
POSTGRES_DB: arkindex_dev
POSTGRES_USER: devuser
POSTGRES_PASSWORD: devdata
# For the backend
DB_HOST: postgres
DB_PORT: 5432
before_script:
- apk --update add postgresql-dev libjpeg-turbo-dev gcc musl-dev zlib-dev
script:
- python setup.py test
- pip install .[test]
- flake8