From 18558bbc27342167dcb9202faeb988d979d91bea Mon Sep 17 00:00:00 2001 From: Bruce Cowan <bruce@bcowan.eu> Date: Tue, 10 Apr 2018 15:19:46 +0100 Subject: [PATCH] Add .gitlab-ci.yml --- .gitlab-ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..52d4150 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,18 @@ +image: python:latest +stages: + - test + +before_script: + - python -V + +check: + stage: test + script: + - pip install flake8 + - flake8 karma.py + +test: + stage: test + script: + - pip install errbot pytest + - pytest -- GitLab