We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51075dc commit f2b91fcCopy full SHA for f2b91fc
1 file changed
autotest.sh
@@ -385,10 +385,10 @@ function execute_tests {
385
fi
386
387
COVER=''
388
- if [ -z "$NOCOVERAGE" ]; then
389
- COVER="--coverage-clover autotest-clover-$DB.xml --coverage-html coverage-html-$DB"
+ if [ -z "$COVERAGE" ]; then
+ echo "No coverage. Set COVERAGE=1 to enable it."
390
else
391
- echo "No coverage"
+ COVER="--coverage-clover autotest-clover-$DB.xml --coverage-html coverage-html-$DB"
392
393
394
echo "$PHPUNIT" --fail-on-warning --fail-on-risky --display-warnings --display-deprecations --display-phpunit-deprecations --colors=always --configuration phpunit-autotest.xml $GROUP $COVER --log-junit "autotest-results-$DB.xml" "$2" "$3"
0 commit comments