From acc7a07a1845e79709900ceefaafb400d1e3a94c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Wed, 28 Jun 2017 22:41:35 -0700 Subject: [PATCH] Show commands while running tests This will make it easier to tell which tests are being run, since some are optional and depend on tools being installed --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 361736fee..ce0150b92 100644 --- a/Makefile +++ b/Makefile @@ -80,15 +80,15 @@ run-docker: docker-image lint: .build/deps.ok @golint ./... | (egrep -v "^vendor/|^bindata_assetfs.go" || true) ifneq ($(JSHINT),) - @$(JSHINT) assets/static/*.js + $(JSHINT) assets/static/*.js endif ifneq ($(ESLINT),) - @$(ESLINT) --quiet assets/static/*.js + $(ESLINT) --quiet assets/static/*.js endif .PHONY: test test: lint bindata_assetfs.go - @go test -cover `go list ./... | grep -v /vendor/` + go test -cover `go list ./... | grep -v /vendor/` .build/vendor.ok: go get -u github.com/kardianos/govendor