Add Gitlab CI tests for Python 3.{5,7,8}

This commit is contained in:
John Helmert
2019-08-26 17:13:10 -05:00
parent c174a19618
commit 0f25df4a64

View File

@@ -7,6 +7,15 @@ python2.7:
- pylint --rcfile .pylintrc -E tuir/ - pylint --rcfile .pylintrc -E tuir/
- coverage report - 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: python3.6:
image: python:3.6-stretch image: python:3.6-stretch
script: script:
@@ -15,3 +24,21 @@ python3.6:
- coverage run -m py.test - coverage run -m py.test
- pylint --rcfile .pylintrc -E tuir/ - pylint --rcfile .pylintrc -E tuir/
- coverage report - 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