From 7f016462f10624da5946e75e059d501257d17841 Mon Sep 17 00:00:00 2001 From: Ali Najafizadeh Date: Wed, 17 Apr 2024 19:15:33 -0400 Subject: [PATCH] Increase timeout to 50s --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 14a1c44..8cdc3c7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,7 @@ ENV GOEXPERIMENT=rangefunc ENV GOPRIVATE=ella.to/* ## TEST GO UNIT TESTS -RUN go test -race -timeout 10s ./... -v +RUN go test -race -timeout 50s ./... -v ## BUILD API RUN go build -ldflags="-w -s -X main.GitCommit=${GIT_COMMIT} -X main.Version=${VERSION}" -o ./bus-server cmd/server/main.go