From 52061c14ac9b8f0429cca34ebad3e6a11e212df5 Mon Sep 17 00:00:00 2001 From: John Helmert Date: Sun, 9 Jun 2019 21:51:32 -0500 Subject: [PATCH] Update gitlab-ci to run a python2 test --- .gitlab-ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4769f83..4db1104 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,3 +1,11 @@ +python2.7: + image: python:2.7-stretch + script: + - pip install .[test] + - pip install . + - python -m pytest tests/ + - pylint --rcfile .pylintrc -E tuir/ + python3.6: image: python:3.6-stretch script: