From 391c889ff17d9b97388d01731ed88251b41d6ecd Mon Sep 17 00:00:00 2001 From: appel_c Date: Mon, 25 Mar 2024 14:31:36 +0100 Subject: [PATCH] fix: fix CI pipeline for py 3.10 and 3.11 --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1918ee3..dad948f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -107,6 +107,8 @@ tests-3.11: image: $CI_DOCKER_REGISTRY/python:3.11 needs: ["pytest"] script: + - git clone --branch $BEC_CORE_BRANCH https://gitlab.psi.ch/bec/bec.git + - pip install -e ./bec/bec_lib[dev] - pytest -v --random-order ./tests allow_failure: true