diff --git a/.gitlab/common.yml b/.gitlab/common.yml
index 50833083b31d9622d9f6bbb89c95abd7bba02a43..496fc815e76a13439ea9c852b3147c7a55e10da8 100644
--- a/.gitlab/common.yml
+++ b/.gitlab/common.yml
@@ -38,7 +38,7 @@ default:
   stage: test
   script:
     - ./.gitlab/test.sh
-  coverage: /^\s*lines:\s*\d+.\d+\%/
+  coverage: /^\s*lines......:\s*\d+.\d+\%/
   artifacts:
     name: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
     expire_in: 2 days
diff --git a/.gitlab/coverage.yml b/.gitlab/coverage.yml
index d2393faac21fdd530c43f30a3fc71d2b1332445e..cc923befba96fedf70b0dc6f3f1c65ef1d8db498 100644
--- a/.gitlab/coverage.yml
+++ b/.gitlab/coverage.yml
@@ -11,7 +11,7 @@ coverage:
   stage: analyse
   script:
     - tools/coverage.sh
-  coverage: /^\s*lines:\s*\d+.\d+\%/
+  coverage: /^\s*lines......:\s*\d+.\d+\%/
   artifacts:
     name: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
     expire_in: 2 days
diff --git a/.gitlab/pages.yml b/.gitlab/pages.yml
index 8ae81ed8b24dac4580b1f3d9a64cd176f851d6d6..e4754619536a74c571fad5313219cbe23b266f8d 100644
--- a/.gitlab/pages.yml
+++ b/.gitlab/pages.yml
@@ -2,7 +2,7 @@
 pages:
   stage: deploy
   extends: .only-master
-  dependencies: []
+  dependencies: [coverage]
   artifacts:
     name: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
     expire_in: 1 week
diff --git a/.gitlab/test.sh b/.gitlab/test.sh
index 6432472ae95c55fe21dd0d0a360379572682d34e..677a1016247c0d3fb74a12f97b44dc19e85ce808 100755
--- a/.gitlab/test.sh
+++ b/.gitlab/test.sh
@@ -21,6 +21,7 @@ then
   cd $CI_PROJECT_DIR || fatal
   gcovr --xml-pretty --exclude-unreachable-branches --print-summary -o ${LOGNAME}.cov --root $CI_PROJECT_DIR || fatal
   lcov --directory build-$VERSION --capture --output-file ${LOGNAME}.lcov || fatal
+  lcov --summary ${LOGNAME}.lcov || fatal
   cp ${LOGNAME}.junit junit.xml || fatal
   cp ${LOGNAME}.cov coverage.xml || fatal
 else
diff --git a/READMEDEV.org b/READMEDEV.org
index 82173c5e2d77cad6223ca5d7f71c243f8240e1c5..8c9f722ae41950f1403fa9df6279f33efb44f16d 100644
--- a/READMEDEV.org
+++ b/READMEDEV.org
@@ -97,8 +97,10 @@ developers must follow and that should be read by contributors.
 
 * CDash tests dashboard
   To see details about the tests performed during the [[https://gitlab.inria.fr/solverstack/chameleon/pipelines][pipelines]] visit
-  [[https://my.cdash.org/index.php?project=Chameleon][CDash]].
+  [[https://my.cdash.org/index.php?project=Chameleon][CDash]]. It has been stopped for now because the CDash server is somehow
+  slow and our jobs may fail because of that.
 
 * Static and dynamic analysis
   To see details about the analysis job performed during the
-  [[https://gitlab.inria.fr/solverstack/chameleon/pipelines][pipelines]] visit [[https://sonarqube.bordeaux.inria.fr/sonarqube/dashboard?id=hiepacs%3Achameleon%3Agitlab%3Asolverstack%3Amaster][Sonarqube]].
+  [[https://gitlab.inria.fr/solverstack/chameleon/pipelines][pipelines]] visit [[https://sonarqube.inria.fr/sonarqube/dashboard?id=hiepacs%3Achameleon%3Agitlab%3Asolverstack][Sonarqube]].
+  See also the coverage of unitary tests here : [[https://solverstack.gitlabpages.inria.fr/chameleon/coverage][LCOV coverage]].
diff --git a/tools/coverage.sh b/tools/coverage.sh
index d1344a8548f2ba4b27e3343814b967695e45f8b2..be629808924532b7463fa366c0d419cfa0eef942 100755
--- a/tools/coverage.sh
+++ b/tools/coverage.sh
@@ -22,5 +22,6 @@ do
 done
 lcov $INPUT_FILES -o chameleon.lcov
 lcov --summary chameleon.lcov
+genhtml -o coverage chameleon.lcov
 lcov_cobertura chameleon.lcov --output chameleon_coverage.xml
 gcovr --xml-pretty --exclude-unreachable-branches --print-summary -o coverage.xml --root ${CI_PROJECT_DIR}
diff --git a/tools/pages.sh b/tools/pages.sh
index aad9ce35a067dba13a1a2898506470e95bd9dd4d..1878e8000e8f002cf6643a234c91a26159c318ec 100755
--- a/tools/pages.sh
+++ b/tools/pages.sh
@@ -67,3 +67,4 @@ cp build-$VERSION/doc/user/*.jpg public/
 cp build-$VERSION/doc/user/*.svg public/
 cp -r build-$VERSION/doc/dev/html/* public/dev/
 cp tmp_fig/* public/
+cp -r coverage public/