Files
tuir/.gitlab-ci.yml
2019-06-09 21:51:32 -05:00

16 lines
333 B
YAML

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:
- pip install .[test]
- pip install .
- python -m pytest tests/
- pylint --rcfile .pylintrc -E tuir/