From a96d16ecc33c2c5088b230996e8023ff8de3b6e7 Mon Sep 17 00:00:00 2001 From: Patrick Barroca <pbarroca@afi-sa.fr> Date: Thu, 2 Feb 2017 10:47:33 +0100 Subject: [PATCH] remove html coverage generation --- build.sh | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/build.sh b/build.sh index 5afdcec6..b2dd815a 100644 --- a/build.sh +++ b/build.sh @@ -1,9 +1,6 @@ #!/bin/sh -COVERAGE_DIR="coverage/$(basename "$PWD")/${CI_BUILD_REF_NAME}" git submodule init git submodule update -phpunit -c tests/phpunit.xml --coverage-text=coverage.txt --coverage-html="../${COVERAGE_DIR}" -echo "</pre>" -echo "<a href='/${COVERAGE_DIR}'>Code coverage</a>" -echo "<pre>" +phpunit -c tests/phpunit.xml --coverage-text=coverage.txt + cat coverage.txt -- GitLab