From 0bf7813c4e3aabde8f98e0ec3115eaedd245e1a3 Mon Sep 17 00:00:00 2001 From: William Banfield <4561443+williambanfield@users.noreply.github.com> Date: Tue, 20 Jul 2021 14:00:51 -0400 Subject: [PATCH] fix makefile test target to rely on test makefile (#6746) The Makefile at the root of the repo [includes](https://github.com/tendermint/tendermint/blob/cd19ef244efda1d666fe4e73b045f94dd5f646ff/Makefile#L61) the Makefile under the `test` package. This fix removes the target defined in the root Makefile in favor of the included one. --- Makefile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Makefile b/Makefile index c34f8bf70..871249f56 100644 --- a/Makefile +++ b/Makefile @@ -233,17 +233,13 @@ build-docker: build-linux ############################################################################### -### Testing ### +### Mocks ### ############################################################################### mockery: go generate -run="mockery" ./... .PHONY: mockery -test: - go test ./... -.PHONY: test - ############################################################################### ### Local testnet using docker ### ###############################################################################