Skip to content

Instantly share code, notes, and snippets.

@dhargitai
Created October 29, 2014 13:24
Show Gist options
  • Save dhargitai/1a6ca20ab73431e34c1e to your computer and use it in GitHub Desktop.
Save dhargitai/1a6ca20ab73431e34c1e to your computer and use it in GitHub Desktop.
Prints the 15 slowest unit tests
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