From 913a7df7afe648180581b3317a950f1c589a71d3 Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Wed, 3 Oct 2018 22:18:57 +0200 Subject: [PATCH] CI Script --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..377d541 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,12 @@ +stages: + - test + +test: + stage: test + image: python:2 + before_script: + - pip install .[test] + script: + - pytest + tags: + - docker