flake8/.gitlab-ci.yml
Ian Cordasco f32e151b47
Fix up GitLab CI runners
PyLint does not yet support 3.6 [1] and the dogfood environment really
shouldn't be pinning to a specific version of Python 3.

[1]: https://github.com/PyCQA/pylint/issues/1241
2017-01-15 09:33:50 -06:00

54 lines
774 B
YAML

image: python
stages:
- test
- build
- release
before_script:
- curl -O https://bootstrap.pypa.io/get-pip.py
- python get-pip.py
- pip install -r dev-requirements.txt
after_script:
- pip install codecov
- codecov --token=7d117e6b-aab6-4283-ab19-166dafc38cf5
python2:
image: python:2.7
stage: test
script: tox -e py27
python3:
stage: test
script: tox --skip-missing-interpreters -e py34,py35
linters:
image: python:3.5
stage: test
script: tox -e linters
docs:
stage: test
script: tox -e docs
dogfood:
stage: test
script: tox -e dogfood
build:
stage: build
script: tox -e build
artifacts:
paths:
- dist/
expire_in: 1 month
release:
stage: release
script: tox -e build
artifacts:
paths:
- dist
only:
- tags