Browse Source

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.
pull/6747/head
William Banfield 3 years ago
committed by GitHub
parent
commit
0bf7813c4e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 5 deletions
  1. +1
    -5
      Makefile

+ 1
- 5
Makefile View File

@ -233,17 +233,13 @@ build-docker: build-linux
############################################################################### ###############################################################################
### Testing ###
### Mocks ###
############################################################################### ###############################################################################
mockery: mockery:
go generate -run="mockery" ./... go generate -run="mockery" ./...
.PHONY: mockery .PHONY: mockery
test:
go test ./...
.PHONY: test
############################################################################### ###############################################################################
### Local testnet using docker ### ### Local testnet using docker ###
############################################################################### ###############################################################################


Loading…
Cancel
Save