mirror of
https://github.com/brunofontes/Memsource-API.git
synced 2024-11-23 19:00:50 +00:00
Fix the pre-push hook error with different phpunit versions
Now the pre-push hook check first for a composer phpunit, it not found, try to use a system wide one. If none of them are available, it will rise an error
This commit is contained in:
parent
c88478f7d8
commit
abda9e4ee8
@ -1,10 +1,10 @@
|
|||||||
params="--bootstrap vendor/autoload.php tests --testdox --color"
|
params="--bootstrap vendor/autoload.php tests --testdox --color"
|
||||||
|
|
||||||
if [ $(command -v phpunit) ]; then
|
if [ -d ./vendor/phpunit ]; then
|
||||||
phpunit $params
|
./vendor/phpunit/phpunit/phpunit $params
|
||||||
else
|
else
|
||||||
if [ -d ./vendor/phpunit ]; then
|
if [ $(command -v phpunit) ]; then
|
||||||
./vendor/phpunit/phpunit/phpunit $params
|
phpunit $params
|
||||||
else
|
else
|
||||||
echo "Please, run 'make install' or install phpunit globally to run the tests"
|
echo "Please, run 'make install' or install phpunit globally to run the tests"
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user