1
0
mirror of https://gitlab.crans.org/mediatek/med.git synced 2025-02-06 06:53:04 +00:00
med/.gitlab-ci.yml

23 lines
277 B
YAML
Raw Normal View History

2020-05-12 15:09:06 +02:00
image: python:3.8
2019-08-02 13:24:49 +02:00
stages:
- test
before_script:
- pip install tox
python37:
image: python:3.7
stage: test
script: tox -e py37
2020-05-12 15:09:06 +02:00
python38:
image: python:3.8
stage: test
script: tox -e py37
2019-08-02 13:24:49 +02:00
linters:
stage: test
script: tox -e linters
2020-02-18 21:34:12 +01:00
allow_failure: true