From f3f9f0265d3111a05183f83c832659b6e1ff3472 Mon Sep 17 00:00:00 2001
From: Rebecca Kohlhaas <rebecca.kohlhaas@iws.uni-stuttgart.de>
Date: Thu, 27 Jun 2024 09:22:18 +0000
Subject: [PATCH] Pipeline: small changes

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b73f84c28..8bd82a254 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -62,7 +62,7 @@ unit-test-job:   # This job runs in the test stage.
     - echo "Running unit tests..."
     - pip install pytest
     # - pytest --junitxml=report.xml
-    - python -m pytest tests
+    - python -m pytest tests/
   artifacts:
     when: always
     #reports:
@@ -72,7 +72,7 @@ lint-test-job:   # This job also runs in the test stage.
   stage: test    # It can run at the same time as unit-test-job (in parallel).
   script:
     - echo "Linting code... This will take about 10 seconds."
-    - sleep 10
+    - sleep 1#0
     - echo "No lint issues found."
 
 deploy-job:      # This job runs in the deploy stage.
-- 
GitLab