heima/.gitlab-ci.yml

11 lines
203 B
YAML

before_script:
- pip install -r requirements/test.txt
test:python-3.5:
stage: test
image: python:3.5-slim
script:
- flake8 heima/
- coverage run manage.py test
- coverage report -m