From be1065a6c431669ee1cef02ce904d138a68ddf4c Mon Sep 17 00:00:00 2001 From: Mechiel Lukkien Date: Mon, 13 Jan 2025 23:23:00 +0100 Subject: [PATCH] add another makefile testing target --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 9ea2842..1ce69a3 100644 --- a/Makefile +++ b/Makefile @@ -36,6 +36,9 @@ test-race: CGO_ENABLED=1 go test -race -shuffle=on -covermode atomic -coverprofile cover.out ./... go tool cover -html=cover.out -o cover.html +test-more: + TZ= CGO_ENABLED=0 go test -shuffle=on -count 2 ./... + # note: if testdata/upgradetest.mbox.gz exists, its messages will be imported # during tests. helpful for performance/resource consumption tests. test-upgrade: build