diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 5c47dd1c740f5e8061d5b920912b0decaf64ae69..e22117e49473cc1fd5b6cceb383aaf7d4021f4c1 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -61,13 +61,14 @@ unit-test-job:   # This job runs in the test stage.
   script:
     - echo "Running unit tests..."
     - pip install pytest
+    - pip install pytest-cov
     - pip install -e .
-    # - pytest --junitxml=report.xml
-    - python -m pytest # tests/
+    - pytest --junitxml=report.xml
+    #- python -m pytest # tests/
   artifacts:
     when: always
-    #reports:
-    #  junit: report.xml
+    reports:
+      junit: report.xml
 
 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).