Files
tuir/.gitlab-ci.yml
2019-06-12 11:53:36 -05:00

18 lines
377 B
YAML

python2.7:
image: python:2.7-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:
- pip install .[test]
- pip install .
- coverage run -m py.test
- pylint --rcfile .pylintrc -E tuir/
- coverage report