med/.gitlab-ci.yml

28 lines
344 B
YAML
Raw Normal View History

2019-08-02 11:24:49 +00:00
image: python:3.6
stages:
- test
before_script:
- pip install tox
2019-08-02 12:36:06 +00:00
python35:
2019-08-02 11:32:09 +00:00
image: python:3.5
stage: test
script: tox -e py35
2019-08-02 11:24:49 +00:00
python36:
image: python:3.6
stage: test
script: tox -e py36
python37:
image: python:3.7
stage: test
script: tox -e py37
linters:
stage: test
script: tox -e linters
2020-02-18 20:34:12 +00:00
allow_failure: true