From 4fabc6139f6401f089ee6e23cda9cac2734de9e8 Mon Sep 17 00:00:00 2001 From: Pierre Mdawar Date: Sat, 30 Dec 2023 18:32:35 +0200 Subject: [PATCH] Simplify the test commands --- Makefile | 4 ++-- README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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 . ```