From c1d2ea69bfcd2bd261b6b7f267dcb71c6ea9860f Mon Sep 17 00:00:00 2001
From: Rebecca Kohlhaas <rebecca.kohlhaas@iws.uni-stuttgart.de>
Date: Thu, 27 Jun 2024 14:21:37 +0000
Subject: [PATCH] Pipeline: Added report path

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e22117e49..813160022 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -65,8 +65,11 @@ unit-test-job:   # This job runs in the test stage.
     - pip install -e .
     - pytest --junitxml=report.xml
     #- python -m pytest # tests/
+  artifacts:
   artifacts:
     when: always
+    paths:
+      - report.xml
     reports:
       junit: report.xml
 
-- 
GitLab