Created
January 30, 2020 15:53
-
-
Save RandyBooth/e08e2329a293b14e6664a01955c30d3e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env php | |
<?php | |
echo PHP_EOL; | |
echo 'Running tests...' . PHP_EOL; | |
exec('vendor/bin/phpunit', $output, $returnCode); | |
if ($returnCode !== 0) { | |
// Show full output | |
echo PHP_EOL . implode($output, PHP_EOL) . PHP_EOL; | |
echo "Aborting commit..." . PHP_EOL; | |
exit(1); | |
} | |
// Show summary (last line) | |
echo array_pop($output) . PHP_EOL; | |
exit(0); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment