Skip to content

Instantly share code, notes, and snippets.

@walm
Created January 25, 2016 15:42
Show Gist options
  • Save walm/ec871dbedc1628d9b1be to your computer and use it in GitHub Desktop.
Save walm/ec871dbedc1628d9b1be to your computer and use it in GitHub Desktop.
go test with color
go test -v ./... | \
sed ''/PASS/s//$$(printf "\033[32mPASS\033[0m")/'' | \
sed ''/SKIP/s//$$(printf "\033[34mSKIP\033[0m")/'' | \
sed ''/FAIL/s//$$(printf "\033[31mFAIL\033[0m")/''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment