From 069f89f0e7083d5893619f6335f16b5f52352a1b Mon Sep 17 00:00:00 2001 From: appel_c Date: Tue, 12 Dec 2023 08:02:09 +0100 Subject: [PATCH] fix: fix syntax/bug --- .gitlab-ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index daf6d69..0669fdf 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -82,13 +82,15 @@ pytest: cobertura: coverage.xml tests-3.10: - extends: "tests-3.9" stage: AdditionalTests image: $CI_DOCKER_REGISTRY/python:3.10 + needs: ["pytest"] + script: + - pytest -v --random-order ./tests allow_failure: true tests-3.11: - extends: "tests-3.9" + extends: "tests-3.10" stage: AdditionalTests image: $CI_DOCKER_REGISTRY/python:3.11 allow_failure: true