CI: improve CI

This commit is contained in:
Antoine Bartuccio 2018-10-04 21:35:39 +02:00
parent cb58b00b6e
commit 839f585f87
Signed by: klmp200
GPG Key ID: E7245548C53F904B

View File

@ -1,19 +1,13 @@
stages:
- setup
- test
setup:
stage: setup
test:
stage: test
script:
- apt-get update
- apt-get install -y gettext
- pip install -r requirements.txt
- pip install coverage
- pip install black
test:
stage: test
script:
- ./manage.py compilemessages
- coverage run ./manage.py test
- coverage html
@ -25,4 +19,5 @@ test:
black:
stage: test
script:
- pip install black
- black --check .