From 112df32d7e7ed10f5b1bac9994ba8352ed9c3501 Mon Sep 17 00:00:00 2001 From: Daniel <d.hornung@indiscale.com> Date: Mon, 14 Oct 2024 18:12:51 +0200 Subject: [PATCH] MAINT: Unit tests for Python 3.13 --- .gitlab-ci.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 61c68e67..65698d86 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -165,15 +165,8 @@ unittest_py312: unittest_py313: tags: [docker] stage: unittest - image: python:3.13-rc - script: - # TODO: Replace by '*python_test_script' as soon as 3.13 has been officially released. - - apt update && apt install -y cargo || true - - pip install meson[ninja] meson-python || true - - pip install pynose pandas pytest pytest-cov gitignore-parser openpyxl>=3.0.7 xlrd==1.2 h5py || true - - pip install git+https://gitlab.indiscale.com/caosdb/src/caosdb-pylib.git@dev || true - - pip install . || true - - pytest --cov=caosadvancedtools unittests || true + image: python:3.13 + script: *python_test_script # Build the sphinx documentation and make it ready for deployment by Gitlab Pages # Special job for serving a static website. See https://docs.gitlab.com/ee/ci/yaml/README.html#pages -- GitLab