From: Thomas Mueller Date: Wed, 15 May 2013 20:44:15 +0000 (+0200) Subject: No unit test coverage reports for pgsql - this causes issues on Jenkins. X-Git-Tag: v6.0.0alpha2~767^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=990980392c754edac0b4f8325458f1055c7ba0d8;p=nextcloud-server.git No unit test coverage reports for pgsql - this causes issues on Jenkins. --- diff --git a/autotest.sh b/autotest.sh index fdf6d2fe098..267815e96d8 100755 --- a/autotest.sh +++ b/autotest.sh @@ -90,7 +90,12 @@ function execute_tests { rm -rf coverage-html-$1 mkdir coverage-html-$1 php -f enable_all.php - phpunit --configuration phpunit-autotest.xml --log-junit autotest-results-$1.xml --coverage-clover autotest-clover-$1.xml --coverage-html coverage-html-$1 + if [ "$1" == "pgsql" ] ; then + # no coverage with pg - causes segfault on ci.tmit.eu - reason unknown + phpunit --configuration phpunit-autotest.xml --log-junit autotest-results-$1.xml + else + phpunit --configuration phpunit-autotest.xml --log-junit autotest-results-$1.xml --coverage-clover autotest-clover-$1.xml --coverage-html coverage-html-$1 + fi } #