26 lines
374 B
YAML
26 lines
374 B
YAML
image: python
|
|
|
|
stages:
|
|
- test
|
|
|
|
before_script:
|
|
- curl -O https://bootstrap.pypa.io/get-pip.py
|
|
- python get-pip.py
|
|
- pip install tox
|
|
|
|
python35:
|
|
image: python:3.5
|
|
stage: test
|
|
script: tox -e py35
|
|
|
|
python36:
|
|
image: python:3.6
|
|
stage: test
|
|
script: tox -e py36
|
|
|
|
lint:
|
|
image: python:3.6
|
|
stage: test
|
|
script: tox -e lint
|
|
|