From dfd2abec575b6cb9df702331880df6b7ad5d8ef9 Mon Sep 17 00:00:00 2001
From: Andreas Romeyke <andreas.romeyke@slub-dresden.de>
Date: Mon, 14 Apr 2025 17:48:58 +0200
Subject: [PATCH] - unified test-stages to stage "test"

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 1ba1435..460f34e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,7 +1,7 @@
 stages:          # List of stages for jobs, and their order of execution
   - build
   - pretest
-  - unittest
+  - test
   - packaging
   - secret_detection
 
@@ -67,7 +67,7 @@ build-env-job:       # This job runs in the build stage, which runs first.
       --ignore-var-run
 
 perl-unit-test-job:   # This job runs in the test stage.
-    stage: unittest    # It only starts when the job in the build stage completes successfully.
+    stage: test    # It only starts when the job in the build stage completes successfully.
     timeout: 60m
     tags:
       - "docker"
@@ -175,6 +175,7 @@ create-debian-packages:
   artifacts:
     paths:
       - artifacts/*.deb
+
 include:
   - template: Security/Secret-Detection.gitlab-ci.yml
   - template: Security/SAST.gitlab-ci.yml
-- 
GitLab