Skip to content

Instantly share code, notes, and snippets.

@walm
Created January 25, 2016 15:42
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