From 4cbf0455ae4e7cd9410b1ea48bf4034981b82a93 Mon Sep 17 00:00:00 2001 From: florian <f.spreckelsen@inidscale.com> Date: Fri, 23 Dec 2022 10:29:13 +0100 Subject: [PATCH] TST: Add Python 3.11 to tox 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 bfac6b00..470f48a0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -141,6 +141,12 @@ unittest_py3.10: image: python:3.10 script: *python_test_script +unittest_py3.11: + tags: [cached-dind] + stage: test + image: python:3.11 + script: *python_test_script + inttest: tags: [docker] services: diff --git a/tox.ini b/tox.ini index 1be547ec..9573e832 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