Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 239 Bytes

go_stuff.md

File metadata and controls

14 lines (10 loc) · 239 Bytes
# install dependency
go get github.com/spf13/cobra


# run all tests
go test ./... && echo ":)"

# run all tests and show output
go test -v ./... && echo ":)"

# skip integration tests
go test -v --skip "_IT" ./... && echo ":)"