From e2d2388e0fa06e6c1d57e239c170f2925b0bfa5b Mon Sep 17 00:00:00 2001 From: vermeul <swen@ethz.ch> Date: Wed, 25 Sep 2019 10:16:26 +0200 Subject: [PATCH] added gitlab-ci yaml file --- .gitlab-ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..28a5ae0 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,20 @@ +image: python:3.7-stretch + +stages: + - style + - tests + +before_script: + - pip install -U pip setuptools + - pip install tox + +tests: + script: + - tox -r -vv -e py37 + stage: tests + +style: + script: + - tox -r -vv -e flake8 + allow_failure: true + stage: style -- GitLab