From 3bf4227d14cd366c3d42b87fbabf9fca15678ee5 Mon Sep 17 00:00:00 2001
From: Daniel <d.hornung@indiscale.com>
Date: Wed, 4 Dec 2024 14:03:53 +0100
Subject: [PATCH] FIX: Pipeline.

---
 .gitlab-ci.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 1ad03ea..34c94e3 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -133,28 +133,28 @@ unittest_py3.9:
 
 unittest_py3.10:
   tags: [cached-dind]
-  needs:[build-testenv]
+  needs: [build-testenv]
   stage: test
   image: python:3.10
   script: *python_test_script
 
 unittest_py3.11:
   tags: [cached-dind]
-  needs:[build-testenv]
+  needs: [build-testenv]
   stage: test
   image: python:3.11
   script: *python_test_script
 
 unittest_py3.12:
   tags: [cached-dind]
-  needs:[build-testenv]
+  needs: [build-testenv]
   stage: test
   image: python:3.12
   script: *python_test_script
 
 unittest_py3.13:
   tags: [cached-dind]
-  needs:[build-testenv]
+  needs: [build-testenv]
   stage: test
   image: python:3.13
   script: *python_test_script
-- 
GitLab