From 14271a64a34ba45a257209a7c7b2550d4062b6dd Mon Sep 17 00:00:00 2001 From: florian <f.spreckelsen@inidscale.com> Date: Fri, 23 Dec 2022 10:26:35 +0100 Subject: [PATCH] TST: Add Python 3.11 to tox interpreters and pipeline --- .gitlab-ci.yml | 6 ++++++ tox.ini | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e594464c..f875082e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -150,6 +150,12 @@ unittest_py310: image: python:3.10 script: *python_test_script +unittest_py310: + tags: [docker] + stage: unittest + image: python:3.10 + script: *python_test_script + # Build the sphinx documentation and make it ready for deployment by Gitlab Pages # Special job for serving a static website. See https://docs.gitlab.com/ee/ci/yaml/README.html#pages pages_prepare: &pages_prepare diff --git a/tox.ini b/tox.ini index 4b667c5e..7696e44d 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist=py38, py39, py310 +envlist=py38, py39, py310, py311 skip_missing_interpreters = true [testenv] -- GitLab