diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index def3febd..bd751341 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -100,6 +100,19 @@ test-3.11-core: path: coverage.xml allow_failure: true +test-3.12-core: + <<: *only-default + image: python:3.12-rc-bullseye + script: + - tox -e py312-core + artifacts: + when: always + reports: + coverage_report: + coverage_format: cobertura + path: coverage.xml + allow_failure: true + test-3.8-all: <<: *only-default image: python:3.8-bullseye @@ -149,6 +162,19 @@ test-3.11-all: path: coverage.xml allow_failure: true +test-3.12-all: + <<: *only-default + image: python:3.12-rc-bullseye + script: + - tox -e py312-all + artifacts: + when: always + reports: + coverage_report: + coverage_format: cobertura + path: coverage.xml + allow_failure: true + build-test: stage: test image: python:3.10-bullseye