heima/.gitlab-ci.yml

11 lines
203 B
YAML
Raw Normal View History

before_script:
2017-02-10 21:20:09 +01:00
- pip install -r requirements/test.txt
2017-02-10 21:20:09 +01:00
test:python-3.5:
stage: test
2017-02-10 21:20:09 +01:00
image: python:3.5-slim
script:
2017-02-10 21:20:09 +01:00
- flake8 heima/
- coverage run manage.py test
2016-08-08 08:42:22 +02:00
- coverage report -m