diff --git a/Makefile b/Makefile index 849cbc3178..2674087e18 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ include ./commons-test.mk .PHONY: test-all -test-all: tools test-unit +test-all: tools test-tools test-unit .PHONY: test-examples test-examples: @@ -11,4 +11,4 @@ test-examples: .PHONY: tidy-all tidy-all: make -C examples tidy-examples - make -C modules tidy-modules \ No newline at end of file + make -C modules tidy-modules diff --git a/commons-test.mk b/commons-test.mk index 2e85378daa..6a0606e7d3 100644 --- a/commons-test.mk +++ b/commons-test.mk @@ -25,6 +25,10 @@ test-%: tools: go mod download +.PHONY: test-tools +test-tools: + go install gotest.tools/gotestsum@latest + .PHONY: tools-tidy tools-tidy: go mod tidy