From a31615616a889e7cda9b0411a6eda2491764188c Mon Sep 17 00:00:00 2001
From: asetGem <amandine.perrin@pasteur.fr>
Date: Mon, 2 Aug 2021 09:13:57 +0200
Subject: [PATCH] show content of artifacts

---
 .gitlab-ci.yml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a6d4aad5..2e0697f2 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
-- 
GitLab