diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e594464c15eb28ea5c7b630c2c5045c2714c465b..f875082efe9b844162d84416b9309c482fad4e9f 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 4b667c5e8e1728ca3b60535f08f4e4c2092dd1e6..7696e44df7af9c8375421061a9bee9bdeceec7d1 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]