diff --git a/Makefile b/Makefile index 1247bd1f0..a07f67efe 100644 --- a/Makefile +++ b/Makefile @@ -39,11 +39,11 @@ check_license: # TODO(fabxc): example tests temporarily removed. test-short: @echo ">> running short tests" - @$(GO) test $(shell $(GO) list ./... | grep -v /vendor/ | grep -v examples) + @$(GO) test -short $(shell $(GO) list ./... | grep -v /vendor/ | grep -v examples) test: @echo ">> running all tests" - @$(GO) test $(pkgs) + @$(GO) test $(shell $(GO) list ./... | grep -v /vendor/ | grep -v examples) format: @echo ">> formatting code"