From 5700bb203b8bbc8ed147d149da2aefcc60e9b70f Mon Sep 17 00:00:00 2001
From: Daniel <d.hornung@indiscale.com>
Date: Wed, 24 Apr 2024 14:51:42 +0200
Subject: [PATCH] MAINT: `allow_failure` does not make sense if it is *always*
 on.

---
 .gitlab-ci.yml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 9809fc49..61c68e67 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -168,11 +168,11 @@ unittest_py313:
   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
-    - pip install meson[ninja] meson-python
-    - 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 .
+    - 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
 
 # Build the sphinx documentation and make it ready for deployment by Gitlab Pages
-- 
GitLab