Add a .gitlab-ci file in order to run continuous integration on gitlab

This commit is contained in:
Alexandre Avenel 2017-01-29 18:07:49 +01:00
parent a79685798d
commit f036224160

6
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,6 @@
image: python:2.7
test:
script:
- pip install -r budget/requirements.txt
- cd budget && python tests.py