From f419cf5719724fdf0b0c02bf10c243f116cf41cf Mon Sep 17 00:00:00 2001
From: jez04 <david.jezek@vsb.cz>
Date: Mon, 18 Sep 2023 14:40:19 +0000
Subject: [PATCH] remove sleeps

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 64b372d..8d8307d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -31,14 +31,12 @@ unit-test-job:   # This job runs in the test stage.
   stage: test    # It only starts when the job in the build stage completes successfully.
   script:
     - echo "Running unit tests... This will take about 60 seconds."
-    - sleep 60
     - echo "Code coverage is 90%"
 
 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
     - echo "No lint issues found."
 
 deploy-job:      # This job runs in the deploy stage.
-- 
GitLab