From c5712a14012cbf7513100f2eed2fc5af4ffae1ac Mon Sep 17 00:00:00 2001 From: Fred Date: Fri, 30 Sep 2016 13:38:07 +0200 Subject: [PATCH] Add .gitlab-ci.yml --- .gitlab-ci.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..4960be2 --- /dev/null +++ b/.gitlab-ci.yml @@ -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 +