heima/.gitlab-ci.yml

11 lines
213 B
YAML
Raw Normal View History

before_script:
2016-08-05 13:59:49 +02:00
- pip install -r requirements/dev.txt
test:python-3.4:
stage: test
image: python:3.4-slim
2016-08-05 13:59:49 +02:00
script:
2016-08-08 08:42:22 +02:00
- flake8 src/
2016-08-05 13:59:49 +02:00
- coverage run src/manage.py test sherlock
2016-08-08 08:42:22 +02:00
- coverage report -m