celigo/.gitlab-ci.yml
2016-05-20 15:08:46 -04:00

39 lines
481 B
YAML

before_script:
- pip install tox setuptools
cache:
paths:
- /root/.cache
stages:
- test
py27:
stage: test
image: python:2.7
script:
- tox -e py27
py33:
stage: test
image: python:3.3
script:
- tox -e py33
py34:
stage: test
image: python:3.4
script:
- tox -e py34
py35:
stage: test
image: python:3.5
script:
- tox -e py35
pypy:
stage: test
image: python:pypy
script:
- tox -e pypy