diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b73f84c28910893e0baaa0a22e60ecd2c49330d3..8bd82a2543d042d0e011b6ed11ce88814f22647c 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.