flake8/.gitlab-ci.yml
2016-06-25 15:28:31 -05:00

22 lines
372 B
YAML

before_script:
- apt-get update -qq
- apt-get install -y python python3
- curl -O https://bootstrap.pypa.io/get-pip.py
- python get-pip.py
- pip install -r dev-requirements.txt
python2:
script:
- tox -e py27
python3:
script:
- tox --skip-missing-interpreters -e py34,py35
linters:
script:
- tox -e linters
docs:
script:
- tox -e docs