From 560ff54c7266e30725c9c33ac6d7749e371a4d43 Mon Sep 17 00:00:00 2001
From: asetGem <amandine.perrin@pasteur.fr>
Date: Mon, 2 Aug 2021 09:38:30 +0200
Subject: [PATCH] show content of .coverage files

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 50d198a0..7063116f 100755
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -90,8 +90,7 @@ unit-test-ubuntu:
     - py.test test/test_unit/test_tree -xv
     - coverage report
     - coverage html
-    - mv htmlcov/index.html myindex
-    - more myindex
+    - more .coverage
     - mv .coverage .coverage.unit
   artifacts:
     paths:
@@ -124,7 +123,7 @@ func-test-ubuntu:
     - py.test test/test_unit/test_align -vx
     - coverage report
     - coverage html
-    - more htmlcov/index.html
+    - more .coverage
     - mv .coverage .coverage.functional
   artifacts:
     paths:
@@ -147,8 +146,8 @@ coverage:
     - pip3 install -r requirements-dev.txt
   script:
     - pwd
-    - more myindex
-    - more htmlcov/index.html
+    - more .coverage.unit
+    - more .coverage.functional
     - coverage combine .coverage.unit .coverage.functional
     - ls -la
     # - mv .coverage.functional .coverage  # only func coverage for now
-- 
GitLab