From d0721db0da01f3b146955c805b380ade977e7dd8 Mon Sep 17 00:00:00 2001 From: Daniel <d.hornung@indiscale.com> Date: Wed, 24 Apr 2024 14:42:34 +0200 Subject: [PATCH] MAINT: `allow_failure` does not make sense if it is *always* on. --- .gitlab-ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a1465a40..9809fc49 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -163,7 +163,6 @@ unittest_py312: script: *python_test_script unittest_py313: - allow_failure: true tags: [docker] stage: unittest image: python:3.13-rc @@ -174,7 +173,7 @@ unittest_py313: - pip install pynose pandas pytest pytest-cov gitignore-parser openpyxl>=3.0.7 xlrd==1.2 h5py - pip install git+https://gitlab.indiscale.com/caosdb/src/caosdb-pylib.git@dev - pip install . - - pytest --cov=caosadvancedtools unittests + - pytest --cov=caosadvancedtools unittests || true # 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