From 1978b788423ce695d4c17ef44c298aff31ae998f Mon Sep 17 00:00:00 2001
From: Daniel <d.hornung@indiscale.com>
Date: Wed, 12 Jun 2024 14:10:11 +0200
Subject: [PATCH] WIP: Pipeline.

---
 .gitlab-ci.yml | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a0a45097..64771fe4 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -161,19 +161,18 @@ unittest_py3.13:
   image: python:3.13-rc
   script:
     # TODO: Replace by '*python_test_script' as soon as 3.13 has been officially released.
+    # TODO Remove the "!" after 3.13 release, which serves as an xfail
     - apt update && apt install -y cargo
     # install dependencies
     - pip install pytest pytest-cov
     # TODO: Use f-branch logic here
-    - ! pip install git+https://gitlab.indiscale.com/caosdb/src/caosdb-pylib.git@dev
-    # TODO Remove the "!" after 3.13 release, which serves as an xfail
-    - ! pip install git+https://gitlab.indiscale.com/caosdb/src/caosdb-advanced-user-tools.git@dev
-    - ! pip install .[h5_crawler,spss]
+    - (! pip install git+https://gitlab.indiscale.com/caosdb/src/caosdb-pylib.git@dev)
+    - (! pip install git+https://gitlab.indiscale.com/caosdb/src/caosdb-advanced-user-tools.git@dev)
+    - (! pip install .[h5_crawler,spss])
     # actual test
-    - ! caosdb-crawler --help
-    - ! pytest --cov=caosdb -vv ./unittests
+    - (! caosdb-crawler --help)
+    - (! pytest --cov=caosdb -vv ./unittests)
 
-  
 inttest:
   tags: [docker]
   services:
-- 
GitLab