From bf88f395d282e8999c49899ae8ef41b32d4c31d7 Mon Sep 17 00:00:00 2001 From: Nikita Skrynnik Date: Mon, 9 Oct 2023 20:05:16 +1100 Subject: [PATCH] run test 10000 times Signed-off-by: Nikita Skrynnik --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0e7b290..6dc9a74 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ COPY . . RUN go build -o /bin/exclude-prefixes . FROM build as test -CMD go test -test.v ./... -count=100 +CMD go test -test.v ./... -count=10000 FROM test as debug CMD dlv -l :40000 --headless=true --api-version=2 test -test.v ./...