Closed KEINOS closed 4 years ago
Sometimes PHPUnit exits with code 2.
https://github.com/KEINOS/TPL-PHP-HelloWorld/blob/da076ca4bc5dcbc1ee7f1713b3b7aa8809431c07/tests/run-tests.sh#L286-L303
./vendor/bin/phpunit \ --configuration ./tests/conf/phpunit.xml \ $option_testdox - return $? + [ $? -eq 0 ] && { + return 0 + } + return 1
Oneliner.
./vendor/bin/phpunit \ --configuration ./tests/conf/phpunit.xml \ $option_testdox - return $? + [ $? -eq 0 ] && return 0 || return 1
Sometimes PHPUnit exits with code 2.
https://github.com/KEINOS/TPL-PHP-HelloWorld/blob/da076ca4bc5dcbc1ee7f1713b3b7aa8809431c07/tests/run-tests.sh#L286-L303