From 0e2aee73cf414f4eed442da09f93d10c359f0556 Mon Sep 17 00:00:00 2001 From: Tyrel Souza Date: Thu, 19 May 2016 10:56:50 -0400 Subject: [PATCH] added gitlab ci yaml --- .gitlab-ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..a982210 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,14 @@ +image: python:2.7 + +before_script: + #- apt-get update -qq && apt-get install -y -qq python python-pip + - python --version + - pip install -r requirements.txt + +types: + - test + +job_test: + type: test + script: + - make test