diff --git a/Makefile b/Makefile index 80a9bcc..648c502 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ .PHONY: test test: - go test ./... -cover -race -count 1 + go test -cover -race -count 1 .PHONY: benchmark benchmark: - go test ./... -bench . + go test -bench . diff --git a/README.md b/README.md index 787b294..e600e5a 100644 --- a/README.md +++ b/README.md @@ -109,7 +109,7 @@ make test Or: ```sh -go test ./... -cover -race +go test -cover -race ``` ## Benchmarks @@ -121,5 +121,5 @@ make benchmark Or: ```sh -go test ./... -bench . +go test -bench . ```