Browse Source

Merge pull request #28325 from PhrozenByte/enhancement/noid/AutotestPhpunitEnv

autotest.sh: Add PHPUNIT_EXE environment variable
pull/28330/head
Vincent Petry 5 years ago
committed by GitHub
parent
commit
ecc2a02311
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      autotest.sh

5
autotest.sh

@ -29,7 +29,10 @@ if [ -z "$PHP_EXE" ]; then
PHP_EXE=php
fi
PHP=$(which "$PHP_EXE")
PHPUNIT=$(which phpunit)
if [ -z "$PHPUNIT_EXE" ]; then
PHPUNIT_EXE=phpunit
fi
PHPUNIT=$(which "$PHPUNIT_EXE")
set -e

Loading…
Cancel
Save