Add Python 3.12 test in Gitlab CI

Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
This commit is contained in:
Emmy D'Anello 2024-01-13 17:24:36 +01:00
parent 0f2f34175c
commit b0fbb406f6
Signed by: ynerant
GPG Key ID: 3A75C55819C8CF85
1 changed files with 8 additions and 8 deletions

View File

@ -2,14 +2,6 @@ stages:
- test
- quality-assurance
py310:
stage: test
image: python:3.10-alpine
before_script:
- apk add --no-cache libmagic
- pip install tox --no-cache-dir
script: tox -e py310
py311:
stage: test
image: python:3.11-alpine
@ -18,6 +10,14 @@ py311:
- pip install tox --no-cache-dir
script: tox -e py311
py312:
stage: test
image: python:3.12-alpine
before_script:
- apk add --no-cache libmagic
- pip install tox --no-cache-dir
script: tox -e py312
linters:
stage: quality-assurance
image: python:3-alpine