From 849e15284f6e1f90e970c0706b158116aed29afa Mon Sep 17 00:00:00 2001 From: appel_c Date: Tue, 12 Dec 2023 07:59:09 +0100 Subject: [PATCH] feat: update ci to default to python3.9 --- .gitlab-ci.yml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ecac318..daf6d69 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,7 @@ # This file is a template, and might need editing before it works on your project. # Official language image. Look for the different tagged releases at: # https://hub.docker.com/r/library/python/tags/ -image: $CI_DOCKER_REGISTRY/python:3.8 +image: $CI_DOCKER_REGISTRY/python:3.9 #commands to run in the Docker container before starting each job. before_script: @@ -81,14 +81,6 @@ pytest: junit: report.xml cobertura: coverage.xml -tests-3.9: - stage: AdditionalTests - image: $CI_DOCKER_REGISTRY/python:3.9 - needs: ["pytest"] - script: - - pytest -v --random-order ./tests - allow_failure: true - tests-3.10: extends: "tests-3.9" stage: AdditionalTests