Skip to content
This repository was archived by the owner on Oct 7, 2020. It is now read-only.

Commit c964768

Browse files
Steven Dakeistio-testing
Steven Dake
authored andcommitted
Provide verbose output during test runs (#633)
Several people have complained about failed tests during `make update-goldens`. This PR turns on the verbose flag to aid in debugging both there, as well as `make test`.
1 parent 480abfe commit c964768

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile.core.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ lint-dependencies:
2828
lint: lint-copyright-banner lint-dependencies lint-go lint-python lint-scripts lint-yaml lint-dockerfiles lint-licenses
2929

3030
test:
31-
@go test -race ./...
31+
@go test -v -race ./...
3232

3333
test_with_coverage:
3434
@go test -race -coverprofile=coverage.txt -covermode=atomic ./...
@@ -85,7 +85,7 @@ docker.save: docker
8585
docker.all: docker docker.push
8686

8787
update-goldens:
88-
REFRESH_GOLDEN=true go test ./cmd/mesh/...
88+
@REFRESH_GOLDEN=true go test -v ./cmd/mesh/...
8989

9090
e2e:
9191
@HUB=$(HUB) TAG=$(TAG) bash -c tests/e2e/e2e.sh

0 commit comments

Comments
 (0)