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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
1 deletions
-
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 |
|
|
|
|
|
|
|
|