Increase test timeout

This commit is contained in:
Jan-Lukas Else 2022-07-17 07:42:46 +02:00
parent 0acfbd393b
commit 6cbd8fb2ce
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ RUN go build -ldflags '-w -s' -o GoBlog
FROM build as test
RUN go test -timeout 20s -cover ./...
RUN go test -timeout 60s -cover ./...
FROM alpine:3.16 as base