heima/.gitlab-ci.yml

11 lines
213 B
YAML

before_script:
- pip install -r requirements/dev.txt
test:python-3.4:
stage: test
image: python:3.4-slim
script:
- flake8 src/
- coverage run src/manage.py test sherlock
- coverage report -m