fix makefile test target to rely on test makefile (#6746)

The Makefile at the root of the repo [includes](cd19ef244e/Makefile (L61)) the Makefile under the `test` package. This fix removes the target defined in the root Makefile in favor of the included one.
This commit is contained in:
William Banfield
2021-07-20 14:00:51 -04:00
committed by GitHub
parent ff9038e2ce
commit 0bf7813c4e

View File

@@ -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 ###
###############################################################################