1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2024-11-26 16:47:10 +00:00
plateforme-tfjm2/.gitlab-ci.yml

28 lines
518 B
YAML
Raw Normal View History

stages:
- test
- quality-assurance
py38:
stage: test
image: python:3.8-alpine
before_script:
- apk add --no-cache libmagic
- pip install tox --no-cache-dir
script: tox -e py38
py39:
stage: test
image: python:3.9-alpine
before_script:
- apk add --no-cache libmagic
- pip install tox --no-cache-dir
script: tox -e py39
linters:
stage: quality-assurance
image: python:3-alpine
before_script:
- pip install tox --no-cache-dir
script: tox -e linters
allow_failure: true