flake8/.gitlab-ci.yml
Ian Cordasco b995d56e19
Add coverage reporting and uploading
Upload our coverage data to codecov.io and aggregate it on test runs.
2016-08-06 15:21:50 -05:00

53 lines
754 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:
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