From 0f25df4a6474a89d3bbfea78f8ec985142a91bb6 Mon Sep 17 00:00:00 2001 From: John Helmert Date: Mon, 26 Aug 2019 17:13:10 -0500 Subject: [PATCH] Add Gitlab CI tests for Python 3.{5,7,8} --- .gitlab-ci.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4409849..c963e48 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,6 +7,15 @@ python2.7: - pylint --rcfile .pylintrc -E tuir/ - coverage report +python3.5: + image: python:3.5-stretch + script: + - pip install .[test] + - pip install . + - coverage run -m py.test + - pylint --rcfile .pylintrc -E tuir/ + - coverage report + python3.6: image: python:3.6-stretch script: @@ -15,3 +24,21 @@ python3.6: - coverage run -m py.test - pylint --rcfile .pylintrc -E tuir/ - coverage report + +python3.7: + image: python:3.7-stretch + script: + - pip install .[test] + - pip install . + - coverage run -m py.test + - pylint --rcfile .pylintrc -E tuir/ + - coverage report + +python3.8: + image: python:3.8-stretch + script: + - pip install .[test] + - pip install . + - coverage run -m py.test + - pylint --rcfile .pylintrc -E tuir/ + - coverage report