From b0fbb406f67c89faa101af8f57b3500272ef8e45 Mon Sep 17 00:00:00 2001 From: Emmy D'Anello Date: Sat, 13 Jan 2024 17:24:36 +0100 Subject: [PATCH] Add Python 3.12 test in Gitlab CI Signed-off-by: Emmy D'Anello --- .gitlab-ci.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2c90530..3a91d34 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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