From ce9902e6912c76b8c3086f79829b88485a52cbc3 Mon Sep 17 00:00:00 2001 From: Tamas Gal <himself@tamasgal.com> Date: Mon, 9 Oct 2023 14:13:17 +0200 Subject: [PATCH] Add Python 3.10 --- {{cookiecutter.project_slug}}/.gitlab-ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/{{cookiecutter.project_slug}}/.gitlab-ci.yml b/{{cookiecutter.project_slug}}/.gitlab-ci.yml index d9cb2a8..8deb1e1 100644 --- a/{{cookiecutter.project_slug}}/.gitlab-ci.yml +++ b/{{cookiecutter.project_slug}}/.gitlab-ci.yml @@ -62,6 +62,14 @@ test-py3.9: - make test <<: *junit_definition +test-py3.10: + image: docker.km3net.de/base/python:3.10 + stage: test + script: + - *virtualenv_definition + - make test + <<: *junit_definition + code-style: image: docker.km3net.de/base/python:3.9 stage: test -- GitLab