From b8f86a618fe89802003bcc01f056b97a92cc9da0 Mon Sep 17 00:00:00 2001 From: Ariel Rin Date: Wed, 3 May 2023 12:20:17 +1000 Subject: [PATCH] py312 rc tests --- .gitlab-ci.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) 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