Skip to content

Instantly share code, notes, and snippets.

@rodafr
Forked from joncalhoun/gotest.sh
Created December 2, 2025 07:04
Show Gist options
  • Select an option

  • Save rodafr/8c2315d80984f59096aa13f3fde4d6ed to your computer and use it in GitHub Desktop.

Select an option

Save rodafr/8c2315d80984f59096aa13f3fde4d6ed to your computer and use it in GitHub Desktop.
gotest() {
go test $* \
| sed -e 's/.*PASS.*/\x1b[32m&\x1b[0m/' \
-e 's/.*FAIL.*/\x1b[31m&\x1b[0m/' \
-e 's/.*SKIP.*/\x1b[33m&\x1b[0m/' \
-e 's/.*RUN.*/\x1b[34m&\x1b[0m/'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment