From 5415b9f3ee371b7673b89e7193ebc8920e44a974 Mon Sep 17 00:00:00 2001 From: asetGem <amandine.perrin@pasteur.fr> Date: Fri, 30 Jul 2021 14:08:35 +0200 Subject: [PATCH] test not changing func test coverage filename --- .gitlab-ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1bc4d9ba..4dccb1b3 100755 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -88,6 +88,7 @@ unit-test-ubuntu: # - py.test test/test_unit/test_corepers -vx # - py.test test/test_unit/test_align -vx # - py.test test/test_unit/test_tree -xv + - coverage report - mv .coverage .coverage-unit artifacts: paths: @@ -117,7 +118,7 @@ func-test-ubuntu: # - py.test test/test_functional/test_all* -vx # - py.test test/test_functional/test_prepare* -vx - coverage report - # - mv .coverage .coverage-functional + - mv .coverage .coverage-functional artifacts: paths: - .coverage @@ -136,9 +137,6 @@ coverage: before_script: - pip3 install -r requirements-dev.txt script: - - pwd - - ls -la - - coverage html - coverage combine .coverage-unit .coverage-functional - coverage html -i - coverage report -i -- GitLab