From f036224160dca3ef5623488018ebaa2fcc8754f6 Mon Sep 17 00:00:00 2001 From: Alexandre Avenel Date: Sun, 29 Jan 2017 18:07:49 +0100 Subject: [PATCH] Add a .gitlab-ci file in order to run continuous integration on gitlab --- .gitlab-ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 00000000..a5238caf --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,6 @@ +image: python:2.7 + +test: + script: + - pip install -r budget/requirements.txt + - cd budget && python tests.py