From 5aafd1e4d8436c5156a39e7b4e92b6fe02c56032 Mon Sep 17 00:00:00 2001 From: asetGem <amandine.perrin@pasteur.fr> Date: Mon, 2 Aug 2021 09:27:48 +0200 Subject: [PATCH] show content of artifacts --- .gitlab-ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2e0697f2..50d198a0 100755 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -89,10 +89,14 @@ unit-test-ubuntu: # - py.test test/test_unit/test_align -vx - py.test test/test_unit/test_tree -xv - coverage report + - coverage html + - mv htmlcov/index.html myindex + - more myindex - mv .coverage .coverage.unit artifacts: paths: - .coverage.unit + - myindex expire_in: 1 hour @@ -143,6 +147,7 @@ coverage: - pip3 install -r requirements-dev.txt script: - pwd + - more myindex - more htmlcov/index.html - coverage combine .coverage.unit .coverage.functional - ls -la -- GitLab