From af92152ba81581abcf82231abd43ecb964c2c2d3 Mon Sep 17 00:00:00 2001 From: Fernando Gomez <fernando.gomezu@tecnalia.com> Date: Thu, 16 Jul 2020 11:47:28 +0200 Subject: [PATCH] add CI --- .gitlab-ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..c76f182 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,10 @@ +image: "python:3.7" + +before_script: + - pip install -r requirements.txt + +test: + script: + - pytest + tags: + - docker -- GitLab