Created
October 29, 2014 13:24
-
-
Save dhargitai/1a6ca20ab73431e34c1e to your computer and use it in GitHub Desktop.
Prints the 15 slowest unit tests
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
alias phpunit-report-runtime="bin/phpunit --log-json php://stdout \ | |
| awk '\$NF ~ '/,/' && \$1 ~ /\"(test|time)\"/' \ | |
| cut -d: -f2- \ | |
| sed \"N;s/\n/--/\" \ | |
| sed \"s/,//\" \ | |
| awk 'BEGIN{FS=\"--\"}; {print \$2 \$1}' | sort -gr \ | |
| head -n 15" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment