From e6f55dabf0441759c3681735c01069993e92207a Mon Sep 17 00:00:00 2001 From: AtomicFS Date: Tue, 5 Sep 2023 16:25:31 +0200 Subject: [PATCH] ci: disable timeout for go test --- Taskfile.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Taskfile.yml b/Taskfile.yml index 9d200b91..0219e151 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -42,7 +42,7 @@ tasks: desc: Run tests dir: action cmds: - - go test {{.CLI_ARGS}} -shuffle=on -covermode=count -coverprofile coverage.out ./... + - go test {{.CLI_ARGS}} -shuffle=on -covermode=count -coverprofile coverage.out -timeout 0 ./... - go tool cover -func=coverage.out - go tool cover -html=coverage.out -o coverage.html