Add .gitlab-ci.yml

This commit is contained in:
Fred 2016-09-30 13:38:07 +02:00
parent a121b293ff
commit c5712a1401
1 changed files with 11 additions and 0 deletions

11
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,11 @@
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 wish
- coverage report -m