Enable GitLab CI

This commit is contained in:
Ian Cordasco 2016-06-25 15:28:31 -05:00
parent 00575214db
commit b5d13260eb
No known key found for this signature in database
GPG key ID: 656D3395E4A9791A
2 changed files with 23 additions and 1 deletions

22
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,22 @@
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

View file

@ -1,6 +1,6 @@
[tox]
minversion=2.3.1
envlist = py27,py33,py34,py35,flake8
envlist = py27,py33,py34,py35,flake8,linters,docs
[testenv]
deps =