make: disable remote tests temporarily

This commit is contained in:
Fabian Reinartz 2017-04-27 17:27:19 +02:00
parent 377886b371
commit 1df03d8346

View file

@ -39,11 +39,11 @@ check_license:
# TODO(fabxc): example tests temporarily removed. # TODO(fabxc): example tests temporarily removed.
test-short: test-short:
@echo ">> running short tests" @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: test:
@echo ">> running all tests" @echo ">> running all tests"
@$(GO) test $(pkgs) @$(GO) test $(shell $(GO) list ./... | grep -v /vendor/ | grep -v examples)
format: format:
@echo ">> formatting code" @echo ">> formatting code"