ojuso-map/.gitlab-ci.yml

33 lines
643 B
YAML
Raw Normal View History

2018-04-08 20:22:31 +00:00
---
2018-09-26 14:21:44 +00:00
image: joyzoursky/python-chromedriver:3.6
2018-04-08 20:22:31 +00:00
stages:
- test
services:
- mdillon/postgis:9.6-alpine
variables:
DEBUG: 1
POSTGRES_DB: ojusomap
POSTGRES_USER: ojusomap
POSTGRES_PASSWORD: passw0rd
DATABASE_HOST: mdillon__postgis
DATABASE_NAME: $POSTGRES_DB
DATABASE_USER: $POSTGRES_USER
DATABASE_PASSWORD: $POSTGRES_PASSWORD
pytest:
stage: test
before_script:
- pip install -U pip setuptools
- pip install -r requirements-test.txt
- apt-get update && cat system-requirements-debian.txt | xargs apt-get install -y
2018-06-06 14:57:11 +00:00
- python manage.py collectstatic
2018-04-08 20:22:31 +00:00
script:
2018-09-23 12:50:38 +00:00
- pytest -v --cov=ojusomap --cov=apps