From bbb9d4db90d387813f6840e41de5598a447385a4 Mon Sep 17 00:00:00 2001 From: Nikita Skrynnik Date: Mon, 9 Oct 2023 12:35:32 +1100 Subject: [PATCH] run test more times Signed-off-by: Nikita Skrynnik --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7c07345..0e7b290 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=10 +CMD go test -test.v ./... -count=100 FROM test as debug CMD dlv -l :40000 --headless=true --api-version=2 test -test.v ./...