diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a6d4aad59bff44a588a9a4d007b98ffcf40eb6f9..2e0697f26493529642dc90e552ebe07481ee83f6 100755
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -119,10 +119,13 @@ func-test-ubuntu:
     # - py.test test/test_functional/test_prepare* -vx
     - py.test test/test_unit/test_align -vx
     - coverage report
+    - coverage html
+    - more htmlcov/index.html
     - mv .coverage .coverage.functional
   artifacts:
     paths:
       - .coverage.functional
+      - htmlcov/index.html
     expire_in: 1 hour
 
 
@@ -140,6 +143,7 @@ coverage:
     - pip3 install -r requirements-dev.txt
   script:
     - pwd
+    - more htmlcov/index.html
     - coverage combine .coverage.unit .coverage.functional
     - ls -la
     # - mv .coverage.functional .coverage  # only func coverage for now