make: disable remote tests temporarily

pull/2661/head
Fabian Reinartz 2017-04-27 17:27:19 +02:00
parent 377886b371
commit 1df03d8346
1 changed files with 2 additions and 2 deletions

View File

@ -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"