Correction des tests automatiques sous Gitlab

master
Olivier DOSSMANN 2017-09-17 11:24:34 +02:00
parent aa01a0d8db
commit 619cd8d326
1 changed files with 5 additions and 3 deletions

View File

@ -1,3 +1,5 @@
image: python:3.6-stretch
stages:
- test
@ -5,6 +7,6 @@ test-openbackloggery:
type: test
script:
- apt-get update -qy
- apt-get install -y python3-dev python-pip
- pip install -r requirements.txt
- python manage.py test
- apt-get install -y python3-dev python3-pip
- pip3 install -r requirements.txt
- cd collection && python3 manage.py test