From 100ba4d65c55812a5d38e26d2500cfbc5e93265d Mon Sep 17 00:00:00 2001 From: Moul <moul@moul.re> Date: Wed, 26 Oct 2022 12:01:29 +0200 Subject: [PATCH] (ci) Move coverage to 3.11 job (#194) --- .gitlab-ci.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f6f4caf..9791a0c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -98,10 +98,18 @@ tests:3.8: variables: PYTHON_VERSION: "3.8" -tests:3.9:cov: +tests:3.9: extends: .tests variables: PYTHON_VERSION: "3.9" + +tests:3.10: + extends: .tests + variables: + PYTHON_VERSION: "3.10" + +tests:3.11:cov: + extends: .tests coverage: '/(?i)total.*\s+(\d+%)/' script: - poetry install @@ -116,14 +124,6 @@ tests:3.9:cov: coverage_format: cobertura path: coverage.xml -tests:3.10: - extends: .tests - variables: - PYTHON_VERSION: "3.10" - -tests:3.11: - extends: .tests - release: stage: release script: -- GitLab