Skip to content
Snippets Groups Projects
test 688 B
Newer Older
  • Learn to ignore specific revisions
  • #!/bin/bash
    
    function run {
      go test $@ |\
    
    Ashwin Ramesh's avatar
    Ashwin Ramesh committed
    		GREP_COLORS='mt=01;32' egrep --line-buffered --color=always '^ok\ .*|' |\
    		GREP_COLORS='mt=00;38;5;226' egrep --line-buffered --color=always '^\?\ .*|' |\
    		GREP_COLORS='mt=01;31' egrep --line-buffered --color=always '.*FAIL.*|'
    
    # For piped commands return non-zero status if any command
    # in the pipe returns a non-zero status
    set -o pipefail
    
    echo
    echo "Running tests. Ignoring vendor folder."
    run "$(go list ./... | grep -v vendor | grep -v cmd)"
    
    # Exit if the previous command failed.
    if [ $? != 0 ]; then
    
    echo
    echo "Running tests in cmd directory."
    run "$(go list ./... | grep -v vendor | grep cmd) --args --debugmode"